Hi.
lets say I have the following columns
"rent total" "SquareMeters" "rent_per_SquareMeter"
I enter the rent, then the SqM and have a formula (rent/SqM) to calculate the "rent per SquareMeter".
So far so good. If the rent is 100 and if I have 30 SqM, the the "rent per SquareMeter" is 33,333333333.
I know how to format the last column so that it will only display 33,33.
Here is my challenge.
I also have a summary tab with the following formula:
="The rent per Squaremeter is:" + [rent_per_SquareMeter]@row
which results in:
The rent per Squaremeter is: 33,3333333
You can guess my question: How can I apply the format to limit the result to 2 post decimal digits only?
Thanks!