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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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])