Hi Tommy,
In order to insert line breaks you can use the following - Chr(10) value.
So if you have some VBA code like this...
"Example1" &Chr(10) &"Example" &Chr(10) &Example3 then in the cell it would appear so...
Example1
Example2
Example3
- Ardhendu