Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |