Conditional Formatting -- Formula Driven

brunell316

New Member
Joined
Dec 10, 2014
Messages
10
Hello All,

I am setting up a macro to edit a workbook that uses conditional formatting when it is edited. Here is the code I have set up to set the conditional formatting for said cell:

With Range("P54")
With .FormatConditions
.Delete
.Add Type:=xlCellValue, Operator:=xlLessEqual, Formula1:="SUM(S54,U54,W54,Y54,AA54)"
.Add Type:=xlExpression, Formula1:="AND(S54="",U54="",W54="",Y54="",AA54="")"
End With
.FormatConditions(1).StopIfTrue = False
.FormatConditions(2).StopIfTrue = False
.FormatConditions(2).Interior.ColorIndex = 0
.FormatConditions(1).Interior.Color = 5287936
.FormatConditions(2).SetFirstPriority
End With

The expression/formula Conditional formatting kicks out the expression I have written exactly here with the quotation marks at the end which then makes the formatting expression not work. I have no clue how to get rid of them in the formula so in the conditional formatting screen it reads:

=AND(S54="",U54="",W54="",Y54="",AA54="")

rather than

="AND(S54="",U54="",W54="",Y54="",AA54="")"

I can't seem to figure it out maybe. Thanks for the help.
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Include the = in your formula.
Code:
.Formula1:="[COLOR="#FF0000"][B]=[/B][/COLOR]AND(S54="""",U54="",W54="""",Y54="",AA54="""")"


When writing an explicit string, one has to use double quotation marks to create single in the result

Code:
Msgbox "this is out ""this is in"" "     '          this is out "this is in"
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,507
Messages
6,125,212
Members
449,214
Latest member
mr_ordinaryboy

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