Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

How to make Chart with STDDev, Upper, Lower Control Limit ADAPT to Date Slicer and Date Heirarchy

Hi everyone,

 

I have DAX formulas for upper and lower control limits (LCL) that are not dynamic based on date / date heirarchy. My question is, does anyone know a way to easily make it dynamic toward dates or do I need to create 3 seperate DAX calculations with month, week, date to get it to change?

 

As you can see the LCL and UCL are not dynamic, they work on the overall data but if we look to month and week, they should not have the same LCL and UCL.

 

Screenshot (62)_LI.jpg

Screenshot (61)_LI.jpg

 

LCL = 
CALCULATE(
    AVERAGE('CASES'[OPENCASES]),ALL('OPEN CASES'))
        -3*CALCULATE(STDEV.P('CASES'[OPENCASES]),ALL('OPEN CASES'))

 

 

UCL = 
CALCULATE(
    AVERAGE('CASES'[OPENCASES]),ALL('OPEN CASES')) 
        +3*CALCULATE(STDEV.P('CASES'[OPENEMMACASES]),ALL('OPEN CASES'))

 

 

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @Anonymous ,

 

The ALL statement returns all the rows in a table, or all the values in a column, ignoring any filters that might have been applied. This function is useful for clearing filters and creating calculations on all the rows in a table. Meaning that when you calculate that in you table you are picking up all the values from your table and ignoring the filter context in this case for date.

 

You need to change your measure using an ALLSELECTED.

LCL = 
CALCULATE(
    AVERAGE('CASES'[OPENCASES]),ALLSELECTED('OPEN CASES'))
        -3*CALCULATE(STDEV.P('CASES'[OPENCASES]),ALLSELECTED('OPEN CASES'))

 

Be aware that making use of this function with the full table can bring you some misscalculations so you may consider on pinpointing to the selected value of dates something similar to:

 

LCL = 
CALCULATE(
    AVERAGE('CASES'[OPENCASES]),ALLSELECTED('OPEN CASES'[Date Column]))
        -3*CALCULATE(STDEV.P('CASES'[OPENCASES]),ALLSELECTED('OPEN CASES'[Date Column]))

If one of this does not return expected result can you please share a sample file.

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

3 REPLIES 3
MFelix
Super User
Super User

Hi @Anonymous ,

 

The ALL statement returns all the rows in a table, or all the values in a column, ignoring any filters that might have been applied. This function is useful for clearing filters and creating calculations on all the rows in a table. Meaning that when you calculate that in you table you are picking up all the values from your table and ignoring the filter context in this case for date.

 

You need to change your measure using an ALLSELECTED.

LCL = 
CALCULATE(
    AVERAGE('CASES'[OPENCASES]),ALLSELECTED('OPEN CASES'))
        -3*CALCULATE(STDEV.P('CASES'[OPENCASES]),ALLSELECTED('OPEN CASES'))

 

Be aware that making use of this function with the full table can bring you some misscalculations so you may consider on pinpointing to the selected value of dates something similar to:

 

LCL = 
CALCULATE(
    AVERAGE('CASES'[OPENCASES]),ALLSELECTED('OPEN CASES'[Date Column]))
        -3*CALCULATE(STDEV.P('CASES'[OPENCASES]),ALLSELECTED('OPEN CASES'[Date Column]))

If one of this does not return expected result can you please share a sample file.

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Anonymous
Not applicable

Yes using ALLSELECTED on a Date Column worked perfectly! Thank you!

@Anonymous ,

 

Glad I could help, please don't forget to mark the correct answer so other can be helped.


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.