I have a text in cell b1 and c1 ie b1 (00 no freight) c1 (charge). I need to combine to read no freight charge. Can anyone help me.
I have a text in cell b1 and c1 ie b1 (00 no freight) c1 (charge). I need to combine to read no freight charge. Can anyone help me.
Last edited by domvar22; 09-04-2009 at 09:00 AM.
Try:
=B1 & " " & C1
_________________
Microsoft MVP 2010 - Excel
Visit: Jerry Beaucaire's Excel Files & Macros
If you've been given good help, use theicon below to give reputation feedback, it is appreciated.
Always put your code between code tags. [CODE] your code here [/CODE]
?None of us is as good as all of us? - Ray Kroc
?Actually, I *am* a rocket scientist.? - JB (little ones count!)
thanks, almost there, now I have to get rid of the 00
The problem with 1row questions is the answer may be too simplistic. Are you saying you will always want everything in cell B1 except the first three characters (the 00 and the space)?
If so, try:
=MID(B1,4,50) & " " &C1
Or if the number of characters change and you want everything after the first "space", then use:
=MID(B1,FIND(" ",B1)+1,999) & " " & C1
It worked, Thanking JBeaucaire.
Please make thread [solved]
Never use Merged Cells in Excel
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks