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.
That you cannot use a formula is NOT TRUE!I cant use a fomula because the cells in W:BH may have existing data that needs to be overwritten.
sub DoNA()
dim r as range
for each r in range(cells(4, "W"), cells(4, "BH"))
if cells(4, "Q").value = "xhigh" then
r.value = "NA"
end if
next
end sub
sub DoNA()
dim c as range, r as range
for each r in range(cells(1, "Q"), cells(1, "Q").end(xldown))
if r.value = "xhigh" then
range(cells(r.row, "W"), cells(r.row, "BH"))
.value = "NA"
end if
next
end sub