Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have once cell that is 75% and one cell that is 25%.
I would like to combine the two into one cell that looks like this "75% / 25%" Concatenate does not seem to work for me since these are not text so it does not display as %s. Thanks for your help! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
I assume that your percentages are in A1 and B1 so in C1 emter =A1&" / "&B1 "RLind" wrote: I have once cell that is 75% and one cell that is 25%. I would like to combine the two into one cell that looks like this "75% / 25%" Concatenate does not seem to work for me since these are not text so it does not display as %s. Thanks for your help! |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
OOPS, use
=A1&"%"&" / "&B1&"%" "RLind" wrote: I have once cell that is 75% and one cell that is 25%. I would like to combine the two into one cell that looks like this "75% / 25%" Concatenate does not seem to work for me since these are not text so it does not display as %s. Thanks for your help! |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=TEXT(A1,"0%")&" / "&TEXT(B1,"0%")
"RLind" wrote: I have once cell that is 75% and one cell that is 25%. I would like to combine the two into one cell that looks like this "75% / 25%" Concatenate does not seem to work for me since these are not text so it does not display as %s. Thanks for your help! |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
Or =100*A1&"%/"&100*B1&"%" -- If this helps, please click the Yes button. Cheers, Shane Devenshire "RLind" wrote: I have once cell that is 75% and one cell that is 25%. I would like to combine the two into one cell that looks like this "75% / 25%" Concatenate does not seem to work for me since these are not text so it does not display as %s. Thanks for your help! |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Sorry should have also said, if you want spaces before and after the /
=100*C7&"% / "&100*B7&"%" -- If this helps, please click the Yes button. Cheers, Shane Devenshire "RLind" wrote: I have once cell that is 75% and one cell that is 25%. I would like to combine the two into one cell that looks like this "75% / 25%" Concatenate does not seem to work for me since these are not text so it does not display as %s. Thanks for your help! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Combining text and cell reference keeping number format | Excel Discussion (Misc queries) | |||
How do I format cell for displaying value in lakhs ? | Excel Discussion (Misc queries) | |||
How to link a cell in date format without displaying it as 0-Jan? | Excel Worksheet Functions | |||
how do I change format for displaying data in cell? | Excel Discussion (Misc queries) | |||
format a cell for displaying numbers in lakhs | Excel Discussion (Misc queries) |