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
Anonymous
Not applicable

Write latest value to previous dates

Hi!

 

I have been grinding on this one for a while and was hoping someone here has solved a similiar issue (or are smart enough to solve it!). I need to write a value to a previous row based on the current value:

 

I have a case where I would like to write a current KPI status to a a column with the current value to be added to all earlier values.

Example:

Date | KPI | KPI_Status | *Latest_KPI_Status*

01.01.2019 | 1 | 1 | 2

01.02.2019 | 1 | 2 | 2

01.01.2019 | 2 | 2 | 1

01.02.2019 | 2 | 2 | 1

01.03.2019 | 2 | 1 | 1 

 

Some of these values I get from measures and custom columns that are available in my sample set: 

https://1drv.ms/f/s!Au2BC7WA4ot_gcQRJmPco_nwBx1iZw

 

Thank you in advance! 🙂

 

Best regards

arefossa

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@Anonymous 

 

Try this

 

=
MAXX (
    TOPN (
        1,
        CALCULATETABLE ( Table1, ALLEXCEPT ( Table1, Table1[KPI] ) ),
        [Date], DESC
    ),
    [KPI_Status]
)

Regards
Zubair

Please try my custom visuals

View solution in original post

1 REPLY 1
Zubair_Muhammad
Community Champion
Community Champion

@Anonymous 

 

Try this

 

=
MAXX (
    TOPN (
        1,
        CALCULATETABLE ( Table1, ALLEXCEPT ( Table1, Table1[KPI] ) ),
        [Date], DESC
    ),
    [KPI_Status]
)

Regards
Zubair

Please try my custom visuals

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.