johannes2008
New Member
- Joined
- Aug 20, 2010
- Messages
- 45
- Office Version
- 365
- Platform
- Windows
Hello All
I was wondering if anyone had any ideas on how to code for this:
What I need is to check if 4 cells in a row (all next to each other) are completely empty (no formulas, no numbers, no text). The row number is changing after every check white a Do/Until loop. In fact the loop will continue until it encounters a row where all 4 cells are empty
so what I am trying to use, that isn't working, is:
Loop Until ActiveCell.Offset(z, x + 1) = "" & ActiveCell.Offset(z, x + 2) = "" & ActiveCell.Offset(z, x + 3) = "" & ActiveCell.Offset(z, x + 4) = ""
any help?
I was wondering if anyone had any ideas on how to code for this:
What I need is to check if 4 cells in a row (all next to each other) are completely empty (no formulas, no numbers, no text). The row number is changing after every check white a Do/Until loop. In fact the loop will continue until it encounters a row where all 4 cells are empty
so what I am trying to use, that isn't working, is:
Loop Until ActiveCell.Offset(z, x + 1) = "" & ActiveCell.Offset(z, x + 2) = "" & ActiveCell.Offset(z, x + 3) = "" & ActiveCell.Offset(z, x + 4) = ""
any help?