cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
sujaymallesh
Frequent Visitor

4 weeks sales in column

Hello,

 

I want to get last 4 weeks sum of sales in the table. In below example column "Previous 4 week Sales".

 

Please can someone help me here.

 

 

WeekProductSalesPrevious 4 week Sales
1A10 
2A10 
3A20 
4A3070
5A40100
6A50140
7A60180
8A70220
9A80260
10A90300
1B5 
2B5 
3B5 
4B1025
5B1535
6B2050
7B2570
8B3090
9B35110
10B40130

 

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@sujaymallesh,

 

You may add a calculated column as shown below.

Column =
VAR p = Table1[Product]
VAR w = Table1[Week]
RETURN
    IF (
        w >= 4,
        SUMX (
            FILTER (
                Table1,
                Table1[Product] = p
                    && Table1[Week]
                    > w - 4
                    && Table1[Week] <= w
            ),
            Table1[Sales]
        )
    )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-chuncz-msft
Community Support
Community Support

@sujaymallesh,

 

You may add a calculated column as shown below.

Column =
VAR p = Table1[Product]
VAR w = Table1[Week]
RETURN
    IF (
        w >= 4,
        SUMX (
            FILTER (
                Table1,
                Table1[Product] = p
                    && Table1[Week]
                    > w - 4
                    && Table1[Week] <= w
            ),
            Table1[Sales]
        )
    )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors