formula in a cell that references a different cell (which is a percentage) but doesnt display it as a percentage...

kbishop94

Active Member
Joined
Dec 5, 2016
Messages
476
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
this is probably a very simplistic question... but I still can't make my formula to properly display (and probably format) it so that it shows the value as a percentage and without rounding it any extra numbers like it does right now....

the formula in the cell is:

="ALL FACILITIES: " & IH242&"% attended"
Capture874.jpg



where cell IH242 (green arrow in the screen shot above) contains the formula: =(IG241/IG242)*1
and is formatted like this:
Capture873.jpg



my target cell (the one that contains the formula that starts with " = "ALL FACAILITIES: " ) currently displays like this:
Capture871.jpg

and I want it to look like this:
Capture872.jpg


Any help is greatly appreciated! (y) :cool:
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
When you reference another cell when building text in a formula, Excel doesn't care about the format in the other cell. It just treats it as a number. So you have to explicitly format it in the formula.

Try this:
Excel Formula:
="ALL FACILITIES: " & TEXT(IH242, "0%") & " attended"
 
Upvote 1
Solution
When you reference another cell when building text in a formula, Excel doesn't care about the format in the other cell. It just treats it as a number. So you have to explicitly format it in the formula.

Try this:
Excel Formula:
="ALL FACILITIES: " & TEXT(IH242, "0%") & " attended"
Awesome... and understood. Thank you, Jeff (y)
 
Upvote 1

Forum statistics

Threads
1,224,820
Messages
6,181,160
Members
453,021
Latest member
Justyna P

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