Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In my formula I copied a cell that was formatted with a percentage. When I
finished the concatenate formula the cell that was input was in a decimal format. How do I keep the format of the cell when linking it to the concatenate formula? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If it is a numeric cell (rather than text) Excel uses the base numeric format
when you convert it to string in a formula. But you can specify the format by using the TEXT function - if the value in A1 is your percentage you could do this: ="The resulting rate is "&TEXT(A1,"##0.0%") -- - K Dales " wrote: In my formula I copied a cell that was formatted with a percentage. When I finished the concatenate formula the cell that was input was in a decimal format. How do I keep the format of the cell when linking it to the concatenate formula? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=TEXT(A1,"0%")&B1
as an example -- HTH Bob Phillips (remove nothere from email address if mailing direct) " wrote in message ... In my formula I copied a cell that was formatted with a percentage. When I finished the concatenate formula the cell that was input was in a decimal format. How do I keep the format of the cell when linking it to the concatenate formula? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
USE CONCATENATE function to connect 2 formulas | Excel Worksheet Functions | |||
how insert the return key in formulas for concatenate of text? | Excel Discussion (Misc queries) | |||
Combining two formulas using concatenate | Excel Worksheet Functions | |||
Using Concatenate to create formulas? | Excel Discussion (Misc queries) | |||
I know how to concatenate ,can one de-concatenate to split date? | New Users to Excel |