I'm having trouble with confirming if any cell in a specified range contains any value. Hoping someone can help me out with the syntax.
Thanks in advance
For i = 1 To DataRange.Rows.Count
CheckCells = If(Qty > 0 And WS1.Range("Sheet1!A" & i & ":Sheet1!Z" & i).Value <> "", "HasValue", "NoValue")
Next i