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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 103 | |
| 79 | |
| 57 | |
| 51 | |
| 46 |