Forum Discussion
Anonymous
7 years agoNot applicable
custom column to fetch values from multiple columns based on Id reference
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 ...
- Anonymous7 years ago
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
Anonymous
7 years agoNot applicable
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