I have three columns (9, 10, & 11); text, currency, and text and I am trying to move them from seperate columns on Sheet2 to one column with forward slashes "/" between them on Sheet3. The attached code does this, however I lose the dollar sign and commas. I need help combining them AND maintaining the dollar sign and commas.
Thanks.![]()
ws3.Cells(NR, 9) = (ws2.Cells(a, 9).Value & "/" & ws2.Cells(a, 10).Value & "/" & ws2.Cells(a, 11).Value)
Bookmarks