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.
Dear Experts
I have the below report being used by the business. I was asked to populate the average of total sales of all stores of group A for a particular week.
I do not have date in my dataset, there is only weekyear, month and year.
Can anyone please help me with the DAX code to achieve the average sales for a particular week.
Thanks
Mahad
Solved! Go to Solution.
@Anonymous
Give this a try.
Avg =
CALCULATE (
AVERAGE ( YourTable[Sales] ),
ALLEXCEPT ( YourTable, YourTable[Week], YourTable[Group] )
)
@Anonymous
Give this a try.
Avg =
CALCULATE (
AVERAGE ( YourTable[Sales] ),
ALLEXCEPT ( YourTable, YourTable[Week], YourTable[Group] )
)