Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
with activesheet.usedrange
for r = .row to .row + .rows.count - 1
for c = .column to .column + .columns.count - 1
with cells(r, c)
select case .value
case 2, 3
.entirerow.hidden=true
exit for
end select
end with
next
next
end with
If (c <> NumCols) And (Date_Data > 20030404) Then
Write #1, Data;
Else
Write #1, "" 'Data """"""""""""""""""""""""""""""""""" I want to skip the row if this is the case right here.
End If
If (c <> NumCols) And (Date_Data > 20030404) Then
Write #1, Data;
End If