Johnexcel

New Member
Joined
Jul 20, 2010
Messages
3
Can someone help me out?

I'm comparing various sets of data in a table based on certain conditions. I must include these conditions so I can exclude data based on dates and how I categorize clients based on tier.

I am using this formula, =STDEV(IF(March[Go Live]<3/1/2010,IF(March[Tier]=5,March[Total VIO Visits]))) to evaluate my total vio visits for those clients who went live prior to march and are categorized in tier 5. I am confirming it with CTRL+SHIFT+ENTER

Is my formula incorrect?
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Hello John, welcome to MrExcel

Your date won't be recognised in that format, try like this

=STDEV(IF(March[Go Live]< DATE(2010,3,1),IF(March[Tier]=5,March[Total VIO Visits])))
 
Upvote 0
wow thank you so much that worked perfectly. Does that format only need to be used for such an array? Because I also have date conditions on averageifs but they seem to come out fine
 
Upvote 0
AVERAGEIFS, like the other IF functions, SUMIF, COUNTIF etc. accepts criteria as a text string e.g. "<3/1/2010" but that doesn't work outside of those functions. You don't have to use DATE, you could use <"3/1/2010"+0 amongst others.......but in my opinion DATE is better as the dates are unambiguous
 
Upvote 0

Forum statistics

Threads
1,214,622
Messages
6,120,580
Members
448,972
Latest member
Shantanu2024

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