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
vini_udenia
Helper I
Helper I

Create a new column based on Previous column rank

Hi, 

I'm looking for a way to create a new column in my PBI report based on the  value in previous session. So for School 505 # of candidates in current session is 100, the new column should display the # of candidates in the previous session ie (June 2022 - identified by using Session Rank -1) to show 55.

 

I know can be done using DAX , any help appreciated! TIA

 

SchoolYear MonthSesion Rank# Candidates# Candidates Previous Session
5052022JUNE1550
5052022DEC210055
5062022JUNE1650
5062022DEC27065
1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

Hi @vini_udenia,

You can use School and Year field values as group and use current session rank as condition to lookup the previous records.

formula =
MAXX (
    FILTER (
        Table,
        [School] = EARLIER ( Table[School] )
            && [Year] = EARLIER ( Table[Year] )
            && [Sesion Rank]
                = EARLIER ( Table[Sesion Rank] ) - 1
    ),
    [# Candidates]
) + 0

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

3 REPLIES 3
lbendlin
Super User
Super User

Power BI has no concept of "previous".  You either need to provide indexing guidance, or use the new OFFSET function to indicate what you mean by "previous"

v-shex-msft
Community Support
Community Support

Hi @vini_udenia,

You can use School and Year field values as group and use current session rank as condition to lookup the previous records.

formula =
MAXX (
    FILTER (
        Table,
        [School] = EARLIER ( Table[School] )
            && [Year] = EARLIER ( Table[Year] )
            && [Sesion Rank]
                = EARLIER ( Table[Sesion Rank] ) - 1
    ),
    [# Candidates]
) + 0

Regards,

Xiaoxin Sheng

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

Thank you Xiaoxin, Worked like a charm 👍

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.