Combing cells

Markiup

New Member
Joined
Oct 6, 2017
Messages
6
Good afternoon Excel gurus ,

If I have to columns in one column I have 3M Libor in the column next to it 1.18. How do I make the 3rd column read 3M Libir +1.180%?

I tried =If(A1 "&text("B1,000%")

Its not working. Anyone got anything better?

Thanks in advance
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Try:
Code:
=A1 & " +" & Text(B1,"0.000%")
 
Upvote 0
Thank you that worked great. What if the percent is 1.7 and one is 1.81. How do I make sure they all go to thousandth. 1.700 and 1.810?
 
Upvote 0
What if the percent is 1.7 and one is 1.81. How do I make sure they all go to thousandth. 1.700 and 1.810?
Did you try it? That formula already does that. It will always have three numbers after the decimal point.
 
Upvote 0
This current formula makes it go from 1.18 to 118.000% . I need 1.180%. I'm probably missing something easy
 
Upvote 0
Percents are actually fractions/decimals (100% is actually equivalent to 1).

So 1.18% is really equal to .0118, not 1.18.
So if your data is originally showing 1.18, you need to account for like by dividing by 100 this:
Code:
=A1 & " +" & Text(B1[COLOR=#ff0000]/100[/COLOR],"0.000%")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,809
Messages
6,127,012
Members
449,351
Latest member
Sylvine

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