Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Hi Team,
I am developing a report where i need to use table visual and have to display the columns as shown below.
Col1 Col2 Col3
Test1 .abc .123
.abc .234
.abc .345
Where i am using a measure to get Col2 and Col3
but the expected output is shown below.
Col1 Col2 Col3
Test1 .abc .123
.234
.345
@SushmaReddy I hope this helps you!THANK YOU!!
BKC =
IF (
ISINSCOPE ( Table1[Col1] ),
CONCATENATEX (
VALUES ( Table2 ),
". " & Table2[Col2],
UNICHAR ( 10 ) & UNICHAR ( 13 ),
Table2[Col3]
)
)
Hi Thank you for the immediate response but i am still getting the same output.
Hi @SushmaReddy ,
Assuming that you want to keep only the first Col3 row the min data by Col1 and Col2, create a calc column using the formula below (change the table and column names accordingly):
=
CALCULATE ( MIN ( [Col3] ), ALLEXCEPT ( Table1, Table1[Col1], Table1[Col2] ) ) = Table1[Col3]
This will return 1/0. Use this column in the filter pane. Set the value to 1.
Or you can use this in a measure
=
CALCULATE ( [Original Measure], FILTER ( Table1, Table1[MinValue] = 1 ) )
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 20 | |
| 17 | |
| 12 |
| User | Count |
|---|---|
| 64 | |
| 55 | |
| 42 | |
| 38 | |
| 30 |