I need to catinate some text information with a blank line between.
This goes on a label for exporting.
For example:
Item number: 123 (this comes from A1)
Description: Display Kit (this comes from B1)
Made In: USA (this comes from C1)
I have catainated this: "Item Number" & "A1" ....then I need a carriage return??
to start the next line .
" Item Number: " & "A1" & char(10)?? &"Description: " &"b1" & Char(10) &"Made In " & "C1"
Desired result:
Item number:123
Description: Display Kit
Made In: USA
Thanks