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

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
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,214,649
Messages
6,120,728
Members
448,987
Latest member
marion_davis

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