How to turn formula into VBA COnditional Format

liemaj

New Member
Joined
Oct 22, 2019
Messages
5
Hi all,

I'm in a search of a VBA guru.

I'd like to turn the following formula into a VBA Conditional Format code:

=IF((SUMPRODUCT(COUNTIFS(INDIRECT("'"&Table1[SheetNames]&"'!$D:$D"),$D16,INDIRECT("'"&Table1[SheetNames]&"'!F:F"),"Y")))-IF(VLOOKUP(D16,D16:O16,3,FALSE)="Y",1,0)>0,TRUE,FALSE)

[SheetNames] = sheet names in workbook

I have a table that contains values in one column and either Y/N in another column and an insert script in the third.. If two rows contain duplicate data AND both have a "Y" value in the next column, then a user changes one of them to N, then the column containing the insert script will highlight in red. Example:

A1 = LOREM IPSUM, B1 = Y, C1 = *insert script* (generated if value in column B is either Y/N), D1 = FALSE
A2 = LOREM IPSUM, B2 = N, C2 = *insert script*, D2 = TRUE <-- (written conditional format so that Cell C2 will highlight)

Can someone help me write the above formula in the form of a VBA code so that it achieves my desired outcome?

If any of the above is not clear, please let me know.

Thanks
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Hi,

Turn on your macro recorder ... and input your formula ...

You will get an initial ' VBA translation ' ...

Hope this will help
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,327
Members
452,635
Latest member
laura12345

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