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
Syndicate_Admin
Administrator
Administrator

How to assign the last value of a month to the first value in the following month

Capture.PNG

This is my table, I want a customer's closing stock value for a given month to be assigned to the initial stock for the following month.

example: 12/31/2020 value is 18079, I want this to appear on 1/4/2021, but what I have is 34984.

Is there any way to do this, pls help your urgent

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

Hi @Syndicate_Admin,

You can try to use the following measure expression if it meets your requirement:

Measure =
VAR currDate =
    MAX ( Table[Date] )
VAR minDateCM =
    //min date of current month
    CALCULATE (
        MIN ( Table[Date] ),
        FILTER (
            ALLSELECTED ( Table ),
            YEAR ( [Date] ) = YEAR ( currDate )
                && MONTH ( [Date] ) = MONTH ( currDate )
        )
    )
VAR maxDatePM =
    //max date of previous month
    CALCULATE (
        MAX ( Table[Date] ),
        FILTER (
            ALLSELECTED ( Table ),
            [Date] < DATE ( YEAR ( currDate ), MONTH ( currDate ), 1 )
        )
    )
RETURN
    IF (
        currDate = minDateCM,
        LOOKUPVALUE ( Table[Value], Table[Date], maxDatePM ),
        SUM ( Table[Value] )
    )

If the above not help, please share some dummy data with raw schema and expected result to test.

How to Get Your Question Answered Quickly

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

2 REPLIES 2
v-shex-msft
Community Support
Community Support

Hi @Syndicate_Admin,

You can try to use the following measure expression if it meets your requirement:

Measure =
VAR currDate =
    MAX ( Table[Date] )
VAR minDateCM =
    //min date of current month
    CALCULATE (
        MIN ( Table[Date] ),
        FILTER (
            ALLSELECTED ( Table ),
            YEAR ( [Date] ) = YEAR ( currDate )
                && MONTH ( [Date] ) = MONTH ( currDate )
        )
    )
VAR maxDatePM =
    //max date of previous month
    CALCULATE (
        MAX ( Table[Date] ),
        FILTER (
            ALLSELECTED ( Table ),
            [Date] < DATE ( YEAR ( currDate ), MONTH ( currDate ), 1 )
        )
    )
RETURN
    IF (
        currDate = minDateCM,
        LOOKUPVALUE ( Table[Value], Table[Date], maxDatePM ),
        SUM ( Table[Value] )
    )

If the above not help, please share some dummy data with raw schema and expected result to test.

How to Get Your Question Answered Quickly

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
amitchandak
Super User
Super User

@Syndicate_Admin ,

With help from the date table, try openingbalancemonth

openingbalancemonth(Sum('Table'[Value]), Date[Date])

 

refer my video : https://youtu.be/6lzYOXI5wfo?t=117

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.