Hi
If cells b4 and b5 both contain certain values at the same time i want to hide rows 7 to 12 but when i click on b4 or b5 the cells unhide.
How can this be done
ive been playing around with this but it wont work properly
show0hide1 = 1 'put 0 to show, put 1 to hide
row2chk = "$38:$47" 'row range to check if G on that row is blank
For rw = Range(row2chk).Cells(1).Row To Range(row2chk).Cells(Range(row2chk).Cells.Count).Row
If Range("B4" & rw).Value <> "29" And Range("G" & rw).Value <> "Single" Then Range("A" & rw).EntireRow.Hidden = show0hide1
Next
Bookmarks