looking across an array

Ted Hepworth

New Member
Joined
Sep 12, 2002
Messages
1
I have a block of data, x rows, y columns. I am trying to read across them one at a time using a macro. I can read across easily using a Do While/Loop routine but cannot get it to step down the rows. I have been trying to use an inner and an outer loop routines without success.
My ultimate goal is to do a Select Case function in each cell to build up a list of integer variable values when the whole array has been analysed.
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
<pre>For i = 1 to y
for j = 1 to x
With Cells(i,j)
'Something here
End With
Next j
Next i</pre>

if this isn't what you want, what have you tried ?
 
Upvote 0

Forum statistics

Threads
1,214,845
Messages
6,121,902
Members
449,053
Latest member
Guy Boot

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top