Need Help with Formula

Amosbroker

New Member
Joined
Mar 26, 2018
Messages
32
Ok, so I have this formula looking at multiple criteria and giving me back a unique number (frequency) I use an array formula. My if statement looked to be if certain cells where blank. Well now I need to run the same formula but do same if cells are blank OR have text that say none. How the heck do I add that additional criteria to my frequency array formula? HALP.

=SUM(IF(FREQUENCY(IF(1-(' Query A Notes'!F$2:F$1499=""),IF((' Query A Notes'!G$2:G$1499="")*ISNUMBER(SEARCH("Lifestyle",' Query A Notes'!K$2:K$1499))*ISNUMBER(SEARCH("Completed",' Query A Notes'!O$2:O$1499)),MATCH(' Query A Notes'!F$2:F$1499,' Query A Notes'!F$2:F$1499,0))),ROW(' Query A Notes'!F$2:F$1499)-ROW(' Query A Notes'!F$2)+1),1))
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
I haven't parsed/tested your entire formula, but if you just want to change that one part, try:

=SUM(IF(FREQUENCY(IF(1-(' Query A Notes'!F$2:F$1499=""),IF(((' Query A Notes'!G$2:G$1499="")+(' Query A Notes'!G$2:G$1499="none"))*ISNUMBER(SEARCH("Lifestyle",' Query A Notes'!K$2:K$1499))*ISNUMBER(SEARCH("Completed",' Query A Notes'!O$2:O$1499)),MATCH(' Query A Notes'!F$2:F$1499,' Query A Notes'!F$2:F$1499,0))),ROW(' Query A Notes'!F$2:F$1499)-ROW(' Query A Notes'!F$2)+1),1))
 
Upvote 0

Forum statistics

Threads
1,226,730
Messages
6,192,711
Members
453,748
Latest member
akhtarf3

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