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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
Looking for insight on grouping/conjoining data in a table. I've attached a picture to better describe what I'm looking to do.
As you can see, for USA there are several sites and it only displays USA once (instead of having USA, USA, USA, USA, etc). How can I do this? Unfortunately, I don't have access to this table just a screenshot of it.
Solved! Go to Solution.
Hi @jmmoran20 ,
Value showing may be a problem when using matrix,not sure what's in your data,see my sample below:
You may take a try,just go to format>row headers>steps layout :off
If matrix doesnt work,I have a workaround for you:
First go to query editor>add column>index column;
Then create 2 columns as below:
_Area =
var _previous=CALCULATE(MAX('Table'[Area]),FILTER(ALL('Table'),'Table'[Index]<EARLIER('Table'[Index])))
Return
IF(_previous<>BLANK(),BLANK(),'Table'[Area])_Country =
var _previous=CALCULATE(MAX('Table'[Country]),FILTER('Table','Table'[Index]<EARLIER('Table'[Index])&&'Table'[Country]=EARLIER('Table'[Country])))
Return
IF(_previous<>BLANK(),BLANK(),'Table'[Country])
And you will see:
For the related .pbix file,pls see attached.
Hi @jmmoran20 ,
Value showing may be a problem when using matrix,not sure what's in your data,see my sample below:
You may take a try,just go to format>row headers>steps layout :off
If matrix doesnt work,I have a workaround for you:
First go to query editor>add column>index column;
Then create 2 columns as below:
_Area =
var _previous=CALCULATE(MAX('Table'[Area]),FILTER(ALL('Table'),'Table'[Index]<EARLIER('Table'[Index])))
Return
IF(_previous<>BLANK(),BLANK(),'Table'[Area])_Country =
var _previous=CALCULATE(MAX('Table'[Country]),FILTER('Table','Table'[Index]<EARLIER('Table'[Index])&&'Table'[Country]=EARLIER('Table'[Country])))
Return
IF(_previous<>BLANK(),BLANK(),'Table'[Country])
And you will see:
For the related .pbix file,pls see attached.
@jmmoran20 , not very clear. You can try matrix, stepped layout off .
https://www.burningsuit.co.uk/blog/2019/04/7-secrets-of-the-matrix-visual/
Hi @jmmoran20
Not sure which chart you are using for visualization. Check the format tab of the vizualization if any avaiable option is present.
Alternatively, I would use the matrix chart for visualization, this will automatically repeat the names you have mentioned.
Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!
Regards,
Pranit
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 103 | |
| 81 | |
| 65 | |
| 50 | |
| 45 |