I have a spreadsheet with many rows and columns, but column E contains a unique identifier/flag (DUP, HLF, or QTR) that I can compare with. When it has this flag I must check all the rows below it for those same flags. Could I say have an array with these 3 flags, and say "If one flag is found, just scan down until flag(s) have ended".
The data there is edited out, but you see all the DUP's, I need exactly the information one row above it all the way to the last DUP in that case. I know how to do it but cannot implement it (brain = hurt).
loop scan through sheet
pick up flag
index -= 1
for loop start
data collection
exit for when next row is no longer a flag
Hope this makes sense to you all. Thanks in advance.
The data there is edited out, but you see all the DUP's, I need exactly the information one row above it all the way to the last DUP in that case. I know how to do it but cannot implement it (brain = hurt).
loop scan through sheet
pick up flag
index -= 1
for loop start
data collection
exit for when next row is no longer a flag
Hope this makes sense to you all. Thanks in advance.