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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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