Hello,
I am trying to clear the contents of specific cells based on whether a separate cell is TRUE or FALSE. Here is the macro I am using.
Sub ClearCells()
Worksheets("Project Description").Activate
If Cells(2, 8).Value = "FALSE" Then Cells(24, 2).ClearContents
If Cells(3, 8).Value =...