I'm looking to use a new column to combine 2 other columns with a line break in between the values. The second column uses text that is italicized and colored in RGB(226,239,218)
.
This macro needs to run through each row of the data set to perform this operation. If I was using a formula in a cell, it would look like =CONCATENATE(A1 & CHAR(10) & B1)
, but of course this does not preserve the formatting so it needs to be done in VBA.
To illustrate, cell A1 contains "Bobby" and cell B1 contains "Football Player", so cell C1 should look like:
Bobby
Football Player
(The 'Football Player' text should be colored)
My VBA knowledge is not very good, and I would definitely appreciate the help! Thanks!