The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have following table:
and trying to create a calculated columns that returns comma separated Non-blank Column names along with their value. (goal is geneate the orange column values)
I used following and could only return the values not the column name
Solved! Go to Solution.
@Anonymous , Try like
Column = CONCATENATEX( filter(union(row("Name","A","Value",[A]),row("Name","B","Value",[B]),row("Name","C","Value",[C]),row("Name","D","Value",[D])), not(ISBLANK([Value])) ), [Name] & " : " & [Value] & " , ")
@Anonymous , Try like
Column = CONCATENATEX( filter(union(row("Name","A","Value",[A]),row("Name","B","Value",[B]),row("Name","C","Value",[C]),row("Name","D","Value",[D])), not(ISBLANK([Value])) ), [Name] & " : " & [Value] & " , ")
User | Count |
---|---|
25 | |
12 | |
8 | |
8 | |
7 |
User | Count |
---|---|
27 | |
12 | |
12 | |
12 | |
6 |