Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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" values, I need a new column that says "DENIED" or "LOAN PAID OUT" for that certain Application ID.
I want the result to be like this one but I still don't have the knowledge to do so.
Any input is very much appreciated.
Thanks Fabric Community.
Solved! Go to Solution.
Pls try this to create a column
Proud to be a Super User!
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.
Thanks for the help. I really appreciate it.
Pls try this to create a column
Proud to be a Super User!
Thanks! This is super helpful. I accepted this as a solution.
you are welcome
Proud to be a Super User!