I can replace a formula in one cell by its calculated value by selecting the cell, hitting F2 then F9 and Enter.
When I want to do this for every cells in a column, and height of that column == N, then the repeating of this job N times is not happy for me.
Is that way to do this for an entire column at once?
Example input:
1
A =CONCATENATE("something1","something2";)
B =CONCATENATE("something3","something4";)
...
n =CONCATENATE("somethingN","somethingN+1";)
Desired output:
1
A something1something2
B something3something4
...
n somethingNsomethingN+1