Find Formula Cell Quickly

majidsiddique

Board Regular
Joined
Oct 22, 2018
Messages
164
Hi All,
I need your help to find out only formula cell with highlight with color quickly. i have a large file with lot of small formula.

Thanks
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Try this

Code:
Sub MM1()
With ActiveSheet.Cells.SpecialCells(xlCellTypeFormulas, 23).Interior
    .ColorIndex = 3
End With
End Sub
 
Upvote 0
Hi Fazza,
Thanks to you to provide me this information but desired result not possible. if yes please tell me
Thanks
 
Upvote 0
hello, Majid

I don't understand "desired result not possible".

I hope Michael's answer is sufficient.

If however you want to pursue the non-VBA formula please give further explanation.

regards, Fazza
 
Upvote 0
Hi Fazza,
i use this but only one formula cell highlight. kindly explain to apply whole sheet data. as above mention question discussed Micheal answer this quickly apply on formula cell. i use it but only one selected formula cell highlight. please tell me to apply whole sheet at once.
thanks.
 
Upvote 0
Maybe you applied the conditional format to only one cell? If so, change so that the conditional formatting is on the entire range. Such as if you select all the used cells on your worksheet & then the conditional format.

Is that OK?
 
Upvote 0

Forum statistics

Threads
1,214,893
Messages
6,122,121
Members
449,066
Latest member
Andyg666

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