Forum Discussion
Mond_Ed07
2 years agoFrequent Visitor
Status values for each application ID
Hi Fabric Community, its me again asking for help and Im fairly new to using Power BI. I have columns named NewValue and Application ID If the NewValue column has "DENIED" or "LOAN PAID OUT" valu...
- 2 years ago
Pls try this to create a column
Column =VAR _LPO=MAXX(FILTER('Table','Table'[Application ID]=EARLIER('Table'[Application ID])&&'Table'[NewValue]="LOAN PAID OUT"),'Table'[NewValue])VAR _d=MAXX(FILTER('Table','Table'[Application ID]=EARLIER('Table'[Application ID])&&'Table'[NewValue]="DENIED"),'Table'[NewValue])return if(_LPO<>"","LOAN PAID OUT", if(_d<>"","DENIED"))
Anonymous
2 years agoNot applicable
Hi Mond_Ed07
Please try this:
Here I create a set of sample:
Then add a measure:
MEASURE =
VAR _vtable =
FILTER (
ALLSELECTED ( 'Table' ),
'Table'[NewValue] IN { "LOAN PAID OUT", "DENIED" }
)
RETURN
CONCATENATEX (
FILTER ( _vtable, [Application ID] = SELECTEDVALUE ( 'Table'[Application ID] ) ),
[NewValue]
)
The result is as follow:
Best Regards
Zhengdong Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Mond_Ed07
2 years agoFrequent Visitor
Thanks for the help. I really appreciate it.