Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi community,
I have table:
and need to add column with output:
AveragePrice = last_7_days / City / Product
I think I am doing right average per product:
Average_price_last_7_days =
VAR first_Date =
MAX ('Sales table'[Date of sale])
RETURN
CALCULATE(
AVERAGE('Sales table'[Price]),
ALLEXCEPT('Sales table','Sales table'[Product]),
'Sales table'[Date of sale] <= first_Date
&& 'Sales table'[Date of sale] >= first_Date - 7)
but how to put in one formula with city?
Thanks in advance
Divous
Solved! Go to Solution.
HI @Divous
try
Average_price_last_7_days =
VAR first_Date =
MAX ('Sales table'[Date of sale])
RETURN
CALCULATE(
AVERAGE('Sales table'[Price]),
ALLEXCEPT('Sales table','Sales table'[Product],'Sales table'[City]),
'Sales table'[Date of sale] <= first_Date
&& 'Sales table'[Date of sale] >= first_Date - 7)
Hope it resolves your issue? Did I answer your question? Mark my post as a solution! Appreciate your Kudos, Press the thumbs up button!! Linkedin Profile |
Hi, @Divous
Is your problem solved? If pranit828's post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Caiyun Zheng
HI @Divous
try
Average_price_last_7_days =
VAR first_Date =
MAX ('Sales table'[Date of sale])
RETURN
CALCULATE(
AVERAGE('Sales table'[Price]),
ALLEXCEPT('Sales table','Sales table'[Product],'Sales table'[City]),
'Sales table'[Date of sale] <= first_Date
&& 'Sales table'[Date of sale] >= first_Date - 7)
Hope it resolves your issue? Did I answer your question? Mark my post as a solution! Appreciate your Kudos, Press the thumbs up button!! Linkedin Profile |
User | Count |
---|---|
141 | |
70 | |
69 | |
52 | |
52 |
User | Count |
---|---|
209 | |
92 | |
64 | |
60 | |
57 |