Clear Contents Macro not working

Vonsteiner

New Member
Joined
Apr 14, 2014
Messages
45
Office Version
  1. 365
Platform
  1. Windows
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 = "FALSE" Then Cells(24, 3).ClearContents
If Cells(4, 8).Value = "FALSE" Then Cells(24, 4).ClearContents
If Cells(5, 8).Value = "FALSE" Then Cells(25, 2).ClearContents
If Cells(6, 8).Value = "FALSE" Then Cells(25, 3).ClearContents
If Cells(7, 8).Value = "FALSE" Then Cells(25, 4).ClearContents
If Cells(8, 8).Value = "FALSE" Then Cells(26, 2).ClearContents
If Cells(9, 8).Value = "FALSE" Then Cells(26, 3).ClearContents
If Cells(10, 8).Value = "FALSE" Then Cells(26, 4).ClearContents


End Sub

I am sure I am just overlooking something but I can't seem to figure it out. Any help would be greatly appreciated. Thank you.
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
If the values in your cells are Boolean values of True/False, and not strings, you need to remove all the quotes from around "FALSE", i.e.
Code:
[COLOR=#333333]If Cells(2, 8).Value = FALSE Then Cells(24, 2).ClearContents[/COLOR]
 
Upvote 0
Solution

Forum statistics

Threads
1,223,903
Messages
6,175,289
Members
452,631
Latest member
a_potato

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top