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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
GT1PowerBi
New Member

General Comments

Hi

 

I have the below data, and i need a custom column to calculate the previous days value based on the "product" and "NewOrExistingMember" filter. There are multiple Products and also multiple "NewOrExistingMember" selections

 

Previous Days Value.JPG

 

Any help would be much appreciated!

🙂

 

1 ACCEPTED SOLUTION
v-caliao-msft
Employee
Employee

@GT1PowerBi,

 

In DAX you can’t reference the previous row in any way because there is no order to the rows, So fi you need to get previous row, you can create a rank column, and then use LOOKUPVALUE function to get it.

Sample data and DAX for you reference.

Rank =
RANKX (
    FILTER (
        Table1,
        Table1[Group] = EARLIER ( Table1[Group] )
            && Table1[Group2] = EARLIER ( Table1[Group2] )
    ),
    Table1[Amount],
    ,
    ASC
)
PreviousValue =
LOOKUPVALUE (
    Table1[Amount],
    Table1[Group], Table1[Group],
    Table1[Group2], Table1[Group2],
    Table1[Rank], Table1[Rank] - 1
)

Capture.PNG

 

Regards,

Charlie Liao

 

View solution in original post

1 REPLY 1
v-caliao-msft
Employee
Employee

@GT1PowerBi,

 

In DAX you can’t reference the previous row in any way because there is no order to the rows, So fi you need to get previous row, you can create a rank column, and then use LOOKUPVALUE function to get it.

Sample data and DAX for you reference.

Rank =
RANKX (
    FILTER (
        Table1,
        Table1[Group] = EARLIER ( Table1[Group] )
            && Table1[Group2] = EARLIER ( Table1[Group2] )
    ),
    Table1[Amount],
    ,
    ASC
)
PreviousValue =
LOOKUPVALUE (
    Table1[Amount],
    Table1[Group], Table1[Group],
    Table1[Group2], Table1[Group2],
    Table1[Rank], Table1[Rank] - 1
)

Capture.PNG

 

Regards,

Charlie Liao

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.