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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
CJANE
Helper I
Helper I

Prior Month Price

Any suggestions on how this expression below can be updated so the Price shown is not a sum but the prior month price based on a filter for certain Holdings Date.

 

 

30dayprice - 2 = CALCULATE(SUM(Holdings[Price]), DATEADD(Holdings[Holdings Date], -1, MONTH))

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

Hi CJANE,

 

As a general solution, modify you measure like below and check if it can meet yoru requirement.

 

30dayprice - 2 =
VAR Previous_Month =
    EDATE ( MAX ( Holdings[Holdings Date] ), -1 )
RETURN
    CALCULATE (
        MAX ( Holdings[Price] ),
        FILTER ( Holdings, Holdings[Holdings Date] = Previous_Month )
    )

Hope it's helpful to you.

 

Jimmy Tao

View solution in original post

1 REPLY 1
v-yuta-msft
Community Support
Community Support

Hi CJANE,

 

As a general solution, modify you measure like below and check if it can meet yoru requirement.

 

30dayprice - 2 =
VAR Previous_Month =
    EDATE ( MAX ( Holdings[Holdings Date] ), -1 )
RETURN
    CALCULATE (
        MAX ( Holdings[Price] ),
        FILTER ( Holdings, Holdings[Holdings Date] = Previous_Month )
    )

Hope it's helpful to you.

 

Jimmy Tao

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.