Question : Combining Cells

Is there a way to combine cells for code below

Sheets("Data").Cells(1, 8).Copy & "/" & Sheets("Data").cells(1,10).copy

Answer : Combining Cells

if you need to add data into cell C1 of the sheet add this code
Range("C2")= Range("a1") + "/" + Range("b1")
Random Solutions  
 
programming4us programming4us