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
handy_pratama
Frequent Visitor

Control Chart in Power BI

Hi All, 

 

I am trying to create a control chart using power bi. 

I have the date column in my data table name "Date". I have the parameters in another column (oil variance)

 

So to create the average line, I use this calculation:

Average Oil Variance = CALCULATE(AVERAGEX(DATA,DATA[Oil Variance]),ALLSELECTED(DATA[Date]))
 
The line shows the correct number but the thing is it is now appear for the whole year no regards to my slicer. For example below is the snapshot when I choose April (1st pic) and July (2nd pic)
 
handy_pratama_0-1627386833829.pnghandy_pratama_1-1627386862747.png

 

The navy blue line it self shows correct number, so when I choose April it shows average of April, when I choose July it shows average of July.

 

What I want is, when I choose the slicer, the axis date will adjust themselves to only the selected month (before average line was there, it do what I want).

 

I try to modified the calculation to:

Average Oil Variance = CALCULATE(AVERAGEX(DATA[Date],DATA[Oil Variance]),ALLSELECTED(DATA[Date]))

 

But it give error

handy_pratama_2-1627387036179.png

 

 

Any idea how to overcome this?

 

Thanks in advance.


Best Regards,

Handy Pratama

1 ACCEPTED SOLUTION
v-henryk-mstf
Community Support
Community Support

Hi @handy_pratama ,

 

According to the error message, the averagex function returns the average value of the expression calculated for each row in the table, AVERAGEX (<table name>, <expression> ). "Table name" is a table that uses expression to evaluate each row: "Expression" is an expression that is evaluated for each row of the table. Refer to the following formula.

Average Oil Variance = 
CALCULATE (
    AVERAGEX ( 'DATA', DATA[Oil Variance] ),
    ALLSELECTED ( DATA[Date] )
)

vhenrykmstf_0-1627544719832.png


If the problem is still not resolved, can you provide an effective data model (delete sensitive information), I will answer you as soon as possible.


Best Regards,
Henry


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
handy_pratama
Frequent Visitor

Thank You all for your reply I already accept as solution.

v-henryk-mstf
Community Support
Community Support

Hi @handy_pratama ,

 

According to the error message, the averagex function returns the average value of the expression calculated for each row in the table, AVERAGEX (<table name>, <expression> ). "Table name" is a table that uses expression to evaluate each row: "Expression" is an expression that is evaluated for each row of the table. Refer to the following formula.

Average Oil Variance = 
CALCULATE (
    AVERAGEX ( 'DATA', DATA[Oil Variance] ),
    ALLSELECTED ( DATA[Date] )
)

vhenrykmstf_0-1627544719832.png


If the problem is still not resolved, can you provide an effective data model (delete sensitive information), I will answer you as soon as possible.


Best Regards,
Henry


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

handy_pratama
Frequent Visitor

Hi @amitchandak 


Thank you for your reply. I try your solution and it gave me this error

handy_pratama_0-1627388958322.png

 

I think its coming from the Data[Date] As i have date as column in my data table. I really new to power BI so I am not quite sure if I doing it right.

 

Do you have further advice?

 

Thanks in advance.


Best Regards,
Handy Pratama

 

 

amitchandak
Super User
Super User

@handy_pratama , Is the axis is drived from DATA[Date], I doubt that.

I think it is using date or calendar table.

 

If yes use ALLSELECTED(Date[Date])

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.