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
 
steps are in the first link posted in thread #4

repeating that here, it is, in post #6 of thread https://www.mrexcel.com/forum/excel-questions/588514-identify-cells-have-formulas.html

here is info on conditional formatting. https://support.office.com/en-us/ar...rmatting-fed60dfa-1d3f-4e13-9ecb-f1951ff89d7f
the way to apply conditional formatting has changed with Excel versions. This may not be how it is if you have an older version. The formula for your situation is per the old forum thread.
If your Excel has conditional formatting, ALT-O-D is a keyboard way to start the conditional formatting.
 
Last edited:
Upvote 0

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
It would have been so much easier to stick with Post #2...:oops:
 
Upvote 0
Agreed.....but sometimes we don't / shouldn't need to...It seems simple enough and obvioulsy for the OP a formula solution is difficult to handle....A merry and happy back at ya!.....sitting on the golf course on the Murray...(y)
 
Upvote 0
Mate...34 today....and it can get to 45 C during Jan....how much hotter do you want...:devilish:
 
Upvote 0
hi fazza,
is it possible in excel to calculate value with background color cell via countif, sumif or vlookup,
i have attendance sheet "P" present in time, RED highlighted background color "P" for late comers.
is that possible to count RED "P" with countif, sumif ?
Thanks.
 
Upvote 0
Can't be done by native Excel function
You would need to create a UDF (code) to do this.
This function
Code:
Function Sumbycolour(CellColour As Range, SumRange As Range) 'SumbyColor(cellcolor, SumRange)
Dim myCell As Range, iCol As Integer
Dim myTotal
iCol = CellColour.Interior.ColorIndex 'gets the target colour
For Each myCell In SumRange 'looks at each cell in the range
    If myCell.Interior.ColorIndex = iCol Then
        myTotal = WorksheetFunction.Sum(myCell) + myTotal
    End If
Next myCell
Sumbycolour = myTotal
End Function
Then to count cells by the color in say A1, use

Code:
=sumbycolour(A1,A1:A500)
assuming your coloured cells are in Col "A"
 
Upvote 0

Forum statistics

Threads
1,216,076
Messages
6,128,670
Members
449,463
Latest member
Jojomen56

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