Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
How can I get cell A1 to show trailing zeros?
I've entered =CONCATENATE(A1," inches") When A1 equals 1.50 or .060 it displays 1.5 inches or .06 inches I need those missing zeros! THANKS |
#2
![]() |
|||
|
|||
![]()
How about
=CONCATENATE(TEXT(A1,"0.000")," inches") or =TEXT(A1,"0.000") & " inches" "dbizek" wrote: How can I get cell A1 to show trailing zeros? I've entered =CONCATENATE(A1," inches") When A1 equals 1.50 or .060 it displays 1.5 inches or .06 inches I need those missing zeros! THANKS |
#3
![]() |
|||
|
|||
![]()
Alternatively, you can format cell A1 as CUSTOM
Type - 0.000 "inches" "Barb R." wrote: How about =CONCATENATE(TEXT(A1,"0.000")," inches") or =TEXT(A1,"0.000") & " inches" "dbizek" wrote: How can I get cell A1 to show trailing zeros? I've entered =CONCATENATE(A1," inches") When A1 equals 1.50 or .060 it displays 1.5 inches or .06 inches I need those missing zeros! THANKS |
#4
![]() |
|||
|
|||
![]()
That works, thanks! How about this? Is there a way to contol the number of
decimal places in that string? IE if its 1.500 i'd like to show 1.50 but if it's .060 i'd like to show .060 any ideas? "Barb R." wrote: How about =CONCATENATE(TEXT(A1,"0.000")," inches") or =TEXT(A1,"0.000") & " inches" "dbizek" wrote: How can I get cell A1 to show trailing zeros? I've entered =CONCATENATE(A1," inches") When A1 equals 1.50 or .060 it displays 1.5 inches or .06 inches I need those missing zeros! THANKS |
#5
![]() |
|||
|
|||
![]()
On Thu, 23 Jun 2005 09:56:04 -0700, dbizek
wrote: That works, thanks! How about this? Is there a way to contol the number of decimal places in that string? IE if its 1.500 i'd like to show 1.50 but if it's .060 i'd like to show .060 any ideas? "Barb R." wrote: Yes there is, but you will first have to state the rules by which you want to determine the number of decimal places in the result. --ron |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Checking Winning Numbers in the Lottery. | Excel Discussion (Misc queries) | |||
My formulas can't 'see' numbers imported from Access in Excel, even when the format is the same. | Excel Discussion (Misc queries) | |||
Converting Numbers to Text properly | Excel Discussion (Misc queries) | |||
Converting numbers to date format from csv files | Excel Discussion (Misc queries) | |||
concatenate and format | Excel Worksheet Functions |