Concatenating just the visible (rounded) values (not the hidden extra, original decimal places)

thankyou

Board Regular
Joined
Aug 13, 2008
Messages
189
...thanks for stopping by my question. i hope you're well. I know how to concatenate, but I'm trying to concatenate 3 already-rounded values to a string, but instead my concatenation is including the original decimal places. For example:

7.2 (already properly rounded to 1 decimal place)
3 (already properly rounded)
6 (already properly rounded)


I'd appreciate the concatenation to read, simply, "7.236"

but instead it's reading too many decimal places on certain of those values. How do you concatenate just the visible values (ie already-rounded values) in those cells? Thanks so much.
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
You could include the ROUND function as part of the concatenation:

=ROUND(D1,1)&ROUND(E1,0)&ROUND(F1,0)
 
Upvote 0
I like that. I'll try that out. Thank you so much for your time.


ps...yeah worked awesomely thanks again!
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,099
Messages
6,128,823
Members
449,470
Latest member
Subhash Chand

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