conditionally clearing content

rj12

New Member
Joined
Oct 27, 2011
Messages
27
I aplogize if this should be combined with my other thread but i thought since my question changed id start a new thread.

I have 3 columns filled with formulas. All are IF statements that returns "X" for true and "" for false. Is it possible to identify the "false" cells and clear the content? I want nothing in there- no value or formula.

the range in question is J5:L100

thank you,
RJ
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Make the formula return 0 instead of ""

then you can highlight the range J5:L100
Press CTRL + G (edit - goto)
special
Formulas
Check Numbers only
OK
Right click any highlighted cell, clear contents.

Hope that helps.
 
Upvote 0
thank you for taking the time to reply to my question.
I tried exactly as you outlined and im receiving a "no cells were found" message.

i'll list the two formulas i have running

=IF(INTEREST_RATE>0,"X","0")
=IF(AND(INTEREST_RATE=0,(DAYS360(RCVD_DATE,today)>7)),"X","0")

thanks again for the assistance.

RJ
 
Upvote 0
remove the quotes from the "0"

Should be

=IF(INTEREST_RATE>0,"X",0)
=IF(AND(INTEREST_RATE=0,(DAYS360(RCVD_DATE,today)>7)),"X",0)
 
Upvote 0
Try this !

=IF(INTEREST_RATE>0,"X",0)
=IF(AND(INTEREST_RATE=0,(DAYS360(RCVD_DATE,today)>7)),"X",0)

Regards,

Murali
 
Upvote 0

Forum statistics

Threads
1,206,971
Messages
6,075,925
Members
446,170
Latest member
zzzz02

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