Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance 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] & " , ")
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |