Hello there,
I am doing up a macro that can perform a specific task(match and return value) to an Area (set by x rows). For example,my raw data spans 30 rows each. ie A1:A30 for data set 1, A31:A61 data set 2...so on to eof.
Previously, i have used the code below to specify using xlCellTypeConstants to determine each area...How can tell excel for each Area(within x rows) >do task> Next Area.
anyone can give me some advise?
Regards
Edmund
I am doing up a macro that can perform a specific task(match and return value) to an Area (set by x rows). For example,my raw data spans 30 rows each. ie A1:A30 for data set 1, A31:A61 data set 2...so on to eof.
Previously, i have used the code below to specify using xlCellTypeConstants to determine each area...How can tell excel for each Area(within x rows) >do task> Next Area.
anyone can give me some advise?
Dim Area As Range
For Each Area In wR.Range("B2", wR.Range("B" & Rows.Count).End(xlUp)).SpecialCells(xlCellTypeConstants).Areas With Area
Regards
Edmund