linking several cells into one

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to have the following cells link together to look like:
RS0001_19671109


A2(RS) B2(0001) C2(1967-11-09)

is there some kind of formula i can use?
Please help!
 
Have a look at the CONCATENATE function.
--
John
MOS Master Instructor
Please reply & rate any replies you get

Ice Hockey rules (especially the Wightlink Raiders)
 
Assume B2 and C2 are text value

=CONCATENATE(A2,B2,"_",SUBSTITUTE(C2,"-",""))
 
I'm assuming C2 is a true Excel date in the format yyyy-mm-dd

=A2&B2&"_"&TEXT(C2,"yyyymmdd")

Biff
 
If you need to get rid of the parenthesis in the cells then try
=SUBSTITUTE(SUBSTITUTE(A2&B2,"(",""),")","")&"_"&SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(C2,"(",""),")",""),"-","")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top