Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi All,
I'm creating an Alarm for our product to see if there is a big % change between daily rolling averages.
The problem is the alarm would fire too often for products with lower Sales as the % would fluctuate too aggressively.
I would like to remove any products from the chart where the AVG Daily Sales Amount is less than X (e.g £500) for the entire date range.
I tried doing this using a filter on the visual but it will only remove the products with less that 500 on the date Dimension. I want it to ignore the date dimension being used in the chart. At the moment i have the % against carrier and date dimensions.
Would i need to create a table to do this or can i do it in DAX Easily?
Thank,
Alex
Solved! Go to Solution.
@Alex1988 , Try like
calculate([AVG Daily Sales Amount], filter(values(Table[product]), [AVG Daily Sales Amount] >500))
or
averageX(filter(summarize(Table, Table[product], "_1",[AVG Daily Sales Amount])),[_1]>500,[_1])
@Alex1988 , Try like
calculate([AVG Daily Sales Amount], filter(values(Table[product]), [AVG Daily Sales Amount] >500))
or
averageX(filter(summarize(Table, Table[product], "_1",[AVG Daily Sales Amount])),[_1]>500,[_1])
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 58 | |
| 45 | |
| 40 | |
| 21 | |
| 18 |