I'm very new to VBA Macros and Excel, and I have a small problem that I need to solve.
Say I have a Column A that has 20 rows of a single word/letter, and a Column B that has 5 rows of a single word/letter.
How do I loop through Column A, starting from A1 and randomly select a row in Column B to add together to form a new string which will be output in Column C?
Meaning I want the output to look like this in Column C:
A1 (for each A) + B2 (random)
A2 (for each A) + B4 (random)
A3 (for each A) + B1 (random)
A4 (for each A) + B3 (random)
A5 (for each A) + B4 (random)
A6 (for each A) + B2 (random)
...
and so on and so forth.
Anyone has any idea how to achieve this?