Reputation: 1
I am using this formula to calculate a ratio =(A2/B2)&":"&1, the answer is correct but the answer (1.388888888889:1). How do I reduce the number of decimals to only one?
Upvotes: 0
Views: 91
Reputation: 9967
You can use this...
=ROUND((A2/B2), 1)&":"&1
Output looks like this....
Upvotes: 1