The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
I have a transportation data set that has many faulty data points. In the table below, I have averaged the 'actual transit days' by city-city pair, but somewhere within the data set there must be incorrect 'negative' days which are throwing off the average calculation.
I've tried coding the average calculation to filter out values less than 0, but it doesn't change the values within the columns. Adding a general filter on the page to exclude negative 'actual transit days' also doesn't have any affect on this column.
Any suggestions would be greatly appreciated!
Thanks!
Solved! Go to Solution.
@ABookbin
Build your measure this way:
HISTORIC AVERAGE =
CALCULATE(
AVERAGE( TABLE[ACTUAL TRANSIT DAYS]),
ALLEXCEPT( TABLE, TABLE[CITY-CITY-PAIR),
TABLE[ACTUAL TRANSIT DAYS] > 0
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@ABookbin
Build your measure this way:
HISTORIC AVERAGE =
CALCULATE(
AVERAGE( TABLE[ACTUAL TRANSIT DAYS]),
ALLEXCEPT( TABLE, TABLE[CITY-CITY-PAIR),
TABLE[ACTUAL TRANSIT DAYS] > 0
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
36 | |
14 | |
12 | |
7 | |
7 |