Hello people,
I have made a simple for loop if the value is greater than 0 then do something,
but I need add few statements
if the value is equal "0" or more then do something
here is my code
Could someone help me?
Thank you in advance
I have made a simple for loop if the value is greater than 0 then do something,
but I need add few statements
if the value is equal "0" or more then do something
here is my code
Code:
For i = 1 To ActiveSheet.UsedRange.SpecialCells(xlCellTypeLastCell).Row
If Cells(x, ActiveCell.Column).Value > 0 Then
' do something
end if
next i
Could someone help me?
Thank you in advance