I need help with adding a suffix

rowie

New Member
Joined
Oct 1, 2014
Messages
32
I want to add a suffix, but only if it is greater than 0. Google wasn't helping me.

This is what I got so far.
=CONCATENATE(D2,"BF")



Thanks
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Yeah that did it, cheers.
I have copy and pasted that into multiple rows, with a different suffix for each column, now i need to combine the values into one cell, using =L2&" "&M2&" "&N2&" "&O2&" "&P2&" "&Q2&" "&R2&" "&S2, but i'm getting unwanted zeroes on empty cells.

hellp.jpg


Joining both formulas would be nice.

Thanks
 
Last edited:
Upvote 0
Try using this in L2 copied across to S2 and down as far as needed:

=IF(C2="","",C2&C$1)
 
Upvote 0
Hopefully one last thing. Using =N3&"+"&O3&"+"&P3&"+"&Q3&"+"&R3&"+"&S3&"+"&T3&"+"&U3 I only want the pluses to be on between 2 values.

huh.jpg


Thanks
 
Upvote 0
Try:

=SUBSTITUTE(TRIM(N3&" "&O3&" "&P3&" "&Q3&" "&R3&" "&S3&" "&T3&" "&U3)," ","+")
 
Upvote 0
That didn't work, but i did bodge a solution. All I did was add a space after the value in B1 to I1, it's not a plus, but it'll do. Cheer for the help again.
 
Upvote 0

Forum statistics

Threads
1,214,588
Messages
6,120,409
Members
448,959
Latest member
camelliaCase

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