Hello,
VBA novice here, and hopefully someone can help!
Writing a tax compilation sheet for preparers - users have to fill in Cells A10, B10, and C10 with either "yes" or "no" from a drop-down data validation list.
If users select "yes" for all 3 cells ---> rows 150 - 200 will be displayed. If any of the cells are "no", then I want the rows 150 - 200 to be hidden.
I've been successful with the following code for one y/n question, but it won't work for the 3 criteria test:
Any insight is appreciated, and thanks in advance![]()
If ActiveCell.Offset(columnOffset:=1) = "cond1" Then If ActiveCell = "Yes" Then Rows("27:38").Hidden = False Else Rows("27:38").Hidden = True End If End If
![]()
Bookmarks