Conditional Formatting on a MATCH/LOOKUP function

Davidwazza

New Member
Joined
Sep 10, 2007
Messages
36
Hi all,

I have an "actual build" worksheet, which allows the user to select which materials were used, material properties (e.g. material grade etc.), including its corresponding length. The user can enter all these in manually, or select the material name from a pre-defined list (Reference worksheet contains this information), and then the associated properties are automatic lookups from the Reference worksheet.

So all this is fine / completed, and the LOOKUP returns its theoretical length from the reference table. However, its actual material lengths will almost never match the theoretical length, so what I want to happen is for a conditional format to highlight the cell, to notify the user that they need to enter a manual value. The auto-looked up length is still useful a proposed build on the worksheet, but having it highlighted to ensure it is manually entered later is the objective.

The other thing is it can't just check if it's a formula, it has to check if it is a formula with a MATCH/LOOKUP function. E.g. it needs to be unhighlighted if someone has a basic formula, ie = 2*0.42 if there two of the item etc..

Hence, I was thinking of having a conditional formula that "format only cells that contain" and then format only cells with "specific text" and "containing" and "MATCH(" text function, however this doesn't seem to work. So any ideas of how to get it what I want?

Length cell formula:
=OFFSET('Reference- Materials'!$N$5, MATCH($BO32, Materials_Item_Number, 0), 0) * $AH32

Thanks! David.
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
I couldn't get this UDF to work in a conditional formatting formula, but if it is placed in an adjacent cell, it would return TRUE if the referenced cell contains MATCH and conditional formatting could be applied to that cell.

Code:
Function FormulaContainsMatch(sWorksheet, sRange)
    Application.Volatile
    FormulaContainsMatch = False
    If InStr(Worksheets(sWorksheet).Range(sRange).Formula, "MATCH") Then
        FormulaContainsMatch = True
    End If
End Function

Another possibility:
I couldn't get this to work as you desired, but it may help:

If you reference this formula in a named range:
=GET.CELL(6,Sheet1!$A1)
referencing the named range will return the text of the formula in Sheet1!A1
 
Upvote 0
ok thanks Phil, I pretty much used your idea to display the formula in another column, and then had my conditional formatting check if there is a MATCH function within this formula, cheers again.

Code:
Function GetFormula(Cell As Range) As String
    Application.Volatile
    GetFormula = Cell.Formula
End Function
 
Upvote 0

Forum statistics

Threads
1,215,628
Messages
6,125,900
Members
449,271
Latest member
bergy32204

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