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 identify values outside of averages?

Hi,

 

My aim is to identify data points where the value for a store is outside of the store's average value for that weekday by + or - 20%

 

For example, if store 1 has a Monday average of 300 and on one particular Monday they have a value of 500, I would like to see this data point as it could be flagged as a potential outlier for investigation.

 

A basic sample of the data struture is given below:

 

DateStoreValue
1/01/20201200
1/01/20202100
1/01/20203300
2/01/20201200
2/01/20202100
2/01/2020320
3/01/20201300
3/01/20202200
3/01/20203100
4/01/20201100
4/01/20202100
4/01/2020325
5/01/20201400
5/01/20202300
5/01/202031000
6/01/20201200
6/01/20202100
6/01/2020340
7/01/202010
7/01/202021000
7/01/2020320

How should I go about creating a measure and visualisaing this?

2 ACCEPTED SOLUTIONS
V-pazhen-msft
Community Support
Community Support

@Anonymous 
The 3 tables should have linked together. 

 

1. Create a Weekday column in Date Table

Weekday = WEEKDAY(DateTable [Date],2)

 

2. The measure can be something like:

 

Outlier = 
Var AvgStoreWeekday= calculate(Average(DataTable[Value]), filter(all(storetable),[storename]=max([storename])),filter(all(datetable),[weekday]=max([weekday]))
Var diffpercent= (Diff = Sum(DataTable[Value]) - [AvgStoreWeekday]) / [AvgStoreWeekday]

Return  IF([diffpercent]<-0.2 || [diffpercent]>0.2), Sum(DataTable[Value]), 0)

 

Paul Zheng _ Community Support Team
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

Ashish_Mathur
Super User
Super User

Hi,

You may download my PBI file from here.

Hope this helps.

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

4 REPLIES 4
Ashish_Mathur
Super User
Super User

Hi,

You may download my PBI file from here.

Hope this helps.

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
V-pazhen-msft
Community Support
Community Support

@Anonymous 
The 3 tables should have linked together. 

 

1. Create a Weekday column in Date Table

Weekday = WEEKDAY(DateTable [Date],2)

 

2. The measure can be something like:

 

Outlier = 
Var AvgStoreWeekday= calculate(Average(DataTable[Value]), filter(all(storetable),[storename]=max([storename])),filter(all(datetable),[weekday]=max([weekday]))
Var diffpercent= (Diff = Sum(DataTable[Value]) - [AvgStoreWeekday]) / [AvgStoreWeekday]

Return  IF([diffpercent]<-0.2 || [diffpercent]>0.2), Sum(DataTable[Value]), 0)

 

Paul Zheng _ Community Support Team
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Anonymous , Create a weekday column

Weekday = WEEKDAY([Date],2)

 

Avg Store Weekday= calculate(Average(Table[Value]), Allexcept(Table,Table[Store],Table[Weekday]))

 

You can take Diff with this Avg

 

Diff = Sum(Table[Value]) - [Avg Store Weekday]

Anonymous
Not applicable

This almost worked. Assuming I have 3 tables - Date, Store, Data ; How do I adjust the formula to refer to the Weekday column from my date table and the Store Name from my Store table?

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.