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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi All,
I have a requirement to validate cell value (id), against multiple columns and return a calulated column saying the ID is part of which all applications. Something like below
Initial Data:
| ID | Name | App1 | App2 | App3 |
| 1 | Steve | 1 | ||
| 2 | paul | 2 | ||
| 3 | adam | 3 | 3 | |
| 4 | smith | 4 | 4 | 4 |
Post Applying Custom Column:
| ID | Name | App1 | App2 | App3 | App Details |
| 1 | Steve | 1 | App1 | ||
| 2 | paul | 2 | App2 | ||
| 3 | adam | 3 | 3 | App1,App2 | |
| 4 | smith | 4 | 4 | 4 | App1,App2,App3 |
Please help on how to build this requirement.
Regards,
Sivapratap.
Solved! Go to Solution.
HI @Anonymous,
Maybe you can try to use following calculate column formula:
Detail=
CONCATENATEX (
FILTER (
{
IF ( ISBLANK ( Table2[App1] ), "", "app1" ),
IF ( ISBLANK ( Table2[App2] ), "", "app2" ),
IF ( ISBLANK ( Table2[App3] ), "", "app3" )
},
[Value] <> BLANK ()
),
[Value],
","
)
Regards,
Xiaoxin Sheng
HI @Anonymous,
Maybe you can try to use following calculate column formula:
Detail=
CONCATENATEX (
FILTER (
{
IF ( ISBLANK ( Table2[App1] ), "", "app1" ),
IF ( ISBLANK ( Table2[App2] ), "", "app2" ),
IF ( ISBLANK ( Table2[App3] ), "", "app3" )
},
[Value] <> BLANK ()
),
[Value],
","
)
Regards,
Xiaoxin Sheng
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 41 | |
| 38 | |
| 36 | |
| 30 | |
| 28 |
| User | Count |
|---|---|
| 128 | |
| 88 | |
| 79 | |
| 67 | |
| 62 |