Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Divous
Helper III
Helper III

Average price per product and city for last n days

Hi community,

 

I have table:

 

Divous_0-1611617638425.png

 

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

1 ACCEPTED SOLUTION
pranit828
Community Champion
Community Champion

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)




PBI_SuperUser_Rank@1x.png


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

View solution in original post

2 REPLIES 2
v-cazheng-msft
Community Support
Community Support

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

pranit828
Community Champion
Community Champion

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)




PBI_SuperUser_Rank@1x.png


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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.