cancel
Showing results for 
Search instead for 
Did you mean: 
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
Vote for T-Shirt Design

Power BI T-Shirt Design Challenge 2023

Vote for your favorite t-shirt design now through March 28.

March 2023 Update3

Power BI March 2023 Update

Find out more about the March 2023 update.

March Events 2023A

March 2023 Events

Find out more about the online and in person events happening in March!

Top Solution Authors