Forum Discussion

hwoehler's avatar
hwoehler
Helper I
6 years ago
Solved

get previous values per group

Hello everybody,
I would like to have the previous values ​​(see screenshot) displayed for the "ChangeWeek" column. So there should be a new column (see screenshot "new"), where the previous value per group (ISIN) is always displayed. It is important that it is a column, not a measure. I already got a solution in another post (https://community.powerbi.com/t5/Desktop/Get-weekly-values-and-previous-values/m-p/927847/highlight/true#M444661), but it's a measure there and not a column. Does anyone have a solution?

 

PBI File: https://we.tl/t-wYhdl5R56e
Best regards, hwoehler
screenshot (Screenshot)

  • Try , as new columns

    Column = maxx(filter('Table','Table'[ISIN]=EARLIER('Table'[ISIN]) && not(ISBLANK('Table'[ChangeWeek])) && 'Table'[Date]<EARLIER('Table'[Date])),'Table'[Date])
    
    Column 2 = if(ISBLANK('Table'[ChangeWeek]),BLANK(),maxx(FILTER('Table','Table'[ISIN]=EARLIER('Table'[ISIN]) && ('Table'[Date])=EARLIER('Table'[Column])),('Table'[ChangeWeek])))

     https://www.dropbox.com/s/kexca62xapy8j41/Filter2.pbix?dl=0

5 Replies