I'm having a bit of a problem with my VBA project. I have a list of unique values in column A (300 values, let's say) and in column B I need to triple each value (so I would get 900 values, each x3) and in column C I need to assign them: A, B, C, A, B, C, A, B, C, etc. so it would look like:
col A: val1 val2 val3 ...
col B: val1 val1 val1 val2 val2 val2 ...
col C: A B C A B C ...
I'm stuck on this, so I would appreciate some tips as I couldn't find anything even similar on stack, usually it's just removing duplicates
Excel-Formulaeif you care to consider that option - JvdV