Concatenation

ceb

New Member
Joined
May 5, 2011
Messages
14
I
n excel 2016,
I am trying to concatenate text with a number but decimal point but will not show, i.e. "test"&C2 where C2 contains 3.0. I just get Text3 instead of Text3.0. what am i doing wrong?


Cheers Clive
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Hi, try like this instead.

="Test "&TEXT(C2,"0.0")
 
Upvote 0
Hi FormR,

Thanks for our reply but the number in in another cell (E2)
"=D2&IF(C2="INT",".DBW"&E2,IF(C2="REAL",".DBD"&E2,IF(C2="BOOL",".DBX"&E2,"")))

Its only if the Decimal Point is xxx.0

Cheers Clive
 
Last edited:
Upvote 0
Thanks for our reply but the number in in another cell (E2)
"=D2&IF(C2="INT",".DBW"&E2,IF(C2="REAL",".DBD"&E2,IF(C2="BOOL",".DBX"&E2,"")))

Hi, simply wrap each instance of the E2 reference with the text function - i.e.

=D2&IF(C2="INT",".DBW"&TEXT(E2,"0.0"),IF(C2="REAL",".DBD"&TEXT(E2,"0.0"),IF(C2="BOOL",".DBX"&TEXT(E2,"0.0"),"")))
 
Upvote 0

Forum statistics

Threads
1,215,831
Messages
6,127,138
Members
449,361
Latest member
VBquery757

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