kpasa
Board Regular
- Joined
- Nov 20, 2015
- Messages
- 82
I'm trying to cycle through a table and pull specific rows with certain criteria. So let's say I have a row and I've activated the first cell in the row. In pseudo code here's what I need:
How do I pair the AND condition with any one of the OR statements being true?
Code:
If ActiveCell < Today AND any of these conditions apply
ActiveCell.offset(0,1) is empty
ActiveCell.offset(0,2) is empty
ActiveCell.offset(0,3) is empty
'Then do some code.
How do I pair the AND condition with any one of the OR statements being true?