add text to formula

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,563
Office Version
  1. 2021
Platform
  1. Windows
I have the following formula which gives me 0.52 . I want the result to appear for eg as 0.52:1, 0.59:1 etc


=B79/B5 result in this instance 0.52


I tried to amend it as ="B79/B3 "&1&":1" and the end result is B79/B3 1:1


It would be appreciated if someone could kindly amend my formula
 
Last edited:

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Remember, anything placed between double-quotes is treated as literal text. So do NOT place your cell references between them!
You want something like:
=B79/B3 & ":1"
or
=ROUND(B79/B3,2) & ":1"
if you want to be sure to limit it to two decimal places.
 
Last edited:
Upvote 0
Another option would be to leave the formula as is, and change the formatting of the cell to 0.00":1"
 
Upvote 0
howard, Good morning.

Try to use:
Code:
=B79/B5 & ":1"

Is that what you want?

I hope it helps.
 
Upvote 0
Thanks for the help guys, much appreciated
 
Upvote 0

Forum statistics

Threads
1,214,991
Messages
6,122,628
Members
449,095
Latest member
bsb1122

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top