Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Using excel 2007
If I concatenate excel cells that have a format of two digits like 117.00 -- 114.36 -- 89.60 It drops the trailing 0 and if the 0 is after the decimal point it also drops the decimal point e.g. the above will come out like this 117 -- 114.36 -- 89.6 For alignment sake (readability) I would like to retain both digits I want to do this for a large number of cells in different columns so my concatenated cell would show 2 decimal placings Will I need to write a function to do this? Cheers. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=TEXT(A1,"#.00")&" -- "&TEXT(B1,"#.00")&" -- "&TEXT(C1,"#.00")
best wishes -- Bernard V Liengme Microsoft Excel MVP http://people.stfx.ca/bliengme remove caps from email "Skinman" wrote in message ... Using excel 2007 If I concatenate excel cells that have a format of two digits like 117.00 -- 114.36 -- 89.60 It drops the trailing 0 and if the 0 is after the decimal point it also drops the decimal point e.g. the above will come out like this 117 -- 114.36 -- 89.6 For alignment sake (readability) I would like to retain both digits I want to do this for a large number of cells in different columns so my concatenated cell would show 2 decimal placings Will I need to write a function to do this? Cheers. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you very much
Skinman "Bernard Liengme" wrote in message ... =TEXT(A1,"#.00")&" -- "&TEXT(B1,"#.00")&" -- "&TEXT(C1,"#.00") best wishes -- Bernard V Liengme Microsoft Excel MVP http://people.stfx.ca/bliengme remove caps from email "Skinman" wrote in message ... Using excel 2007 If I concatenate excel cells that have a format of two digits like 117.00 -- 114.36 -- 89.60 It drops the trailing 0 and if the 0 is after the decimal point it also drops the decimal point e.g. the above will come out like this 117 -- 114.36 -- 89.6 For alignment sake (readability) I would like to retain both digits I want to do this for a large number of cells in different columns so my concatenated cell would show 2 decimal placings Will I need to write a function to do this? Cheers. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
Here is a slimmed down version: =TEXT(A1,"#.00 -- ")&TEXT(B1,"#.00 -- ")&TEXT(C1,"#.00") If this helps, please click the Yes button. Cheers, Shane Devenshire "Skinman" wrote: Thank you very much Skinman "Bernard Liengme" wrote in message ... =TEXT(A1,"#.00")&" -- "&TEXT(B1,"#.00")&" -- "&TEXT(C1,"#.00") best wishes -- Bernard V Liengme Microsoft Excel MVP http://people.stfx.ca/bliengme remove caps from email "Skinman" wrote in message ... Using excel 2007 If I concatenate excel cells that have a format of two digits like 117.00 -- 114.36 -- 89.60 It drops the trailing 0 and if the 0 is after the decimal point it also drops the decimal point e.g. the above will come out like this 117 -- 114.36 -- 89.6 For alignment sake (readability) I would like to retain both digits I want to do this for a large number of cells in different columns so my concatenated cell would show 2 decimal placings Will I need to write a function to do this? Cheers. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Concatenate help | Excel Discussion (Misc queries) | |||
Concatenate | Excel Discussion (Misc queries) | |||
Concatenate | Excel Worksheet Functions | |||
CONCATENATE | Excel Discussion (Misc queries) | |||
I know how to concatenate ,can one de-concatenate to split date? | New Users to Excel |