Thread: VBA Loop Code
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
D. Stacy D. Stacy is offline
external usenet poster
 
Posts: 10
Default VBA Loop Code

I have three column of data and I would like to use VBA code to go loop thru
the rows of data and then write output to another worksheet.

Value Range Label
1400 175 Red
2400 112 Blue
9000 710 Green

The output table (range) would look something like


1400 Red
1401 Red
1402 Red
1403 Red
....
....
....
...
2400 Blue
2401 Blue
etc. etc.


Thanks in advance!