The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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])