Conditional Formatting - Making cells invisible

andrewb90

Well-known Member
Joined
Dec 16, 2009
Messages
1,077
Hello All,

I am trying to enter a formula into conditional formatting that makes a certain cell range 'disappear.' Since I am pretty sure I can't hide individual cells, I am trying to turn all the text fill and borders white to become unnoticeable. My formula I am using is this:
=IF+$M$3<5
I have the effects that I want selected to take place if M3 is any number less than 5 but I don't seem to see anything happening.

Any suggestions would be great.
(Using Excel 2010)

Thanks,

Andrew
 
I had just inserted a shape and then assigned a macro to it.
I'm sorry if I'm completely leading you the wrong way with this, These kinds of things are not my strong suit in Excel.

- Andrew
 
Upvote 0

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Try this

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address(False, False) = "M5" Then Me.Shapes("Rounded Rectangle 52").Visible = Target.Value >= 5
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,275
Messages
6,171,122
Members
452,381
Latest member
Nova88

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