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

The 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.

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
Feb2025 Sticker Challenge

Join our Community Sticker Challenge 2025

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

Jan NL Carousel

Fabric Community Update - January 2025

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