Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi all
I have a table as a visual on my dashboard and I´m using an ID column that makes the right grouping for the values that the table visual contain.
But I would like to be able to not show the ID column in the visual as doesn´t provide useful information for this purpose, so is there any sort of DAX that can help me to make sure to group the table visual by ID column but not adding it necessary on the visual itself?
If I just get rid of the ID column it displays less rows than it should, so definitely would like to make sure that the table visual is group by the ID column
Solved! Go to Solution.
You can try the second way that OwenAuger mentioned . Split the [ID] column into 2 columns, one for text and one for numbers . The premise of this split is that the text of your [ID] column must be consistent, and the numbers behind are different, so that you can group and merge according to the number column . I created a sample , you can have a look .
Original data :
Then split the [ID] column .
Go back to Desktop view , then create a measure to sum the value by column [ID.2] .
Measure = CALCULATE(SUM('Table'[value]),ALLEXCEPT('Table','Table'[ID.2]))
The final result is as shown :
I have attached my pbix file , you can refer to it .
Best Regards,
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You can try the second way that OwenAuger mentioned . Split the [ID] column into 2 columns, one for text and one for numbers . The premise of this split is that the text of your [ID] column must be consistent, and the numbers behind are different, so that you can group and merge according to the number column . I created a sample , you can have a look .
Original data :
Then split the [ID] column .
Go back to Desktop view , then create a measure to sum the value by column [ID.2] .
Measure = CALCULATE(SUM('Table'[value]),ALLEXCEPT('Table','Table'[ID.2]))
The final result is as shown :
I have attached my pbix file , you can refer to it .
Best Regards,
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.
I created a sample pbix file like below, and I hope these measures in this file can provide some ideas on how to apply to your data model.
Hi @Jihwan_Kim , is more related to the answer that Owen provided, but still hoping for another solution, at the moment I`m hiding the ID column from the table visual by just compressing the ID column header to the left to not be visible, but not ideal.
Unfortunately Power BI Table and Matrix visuals don't have a direct equivalent of the "Show header" option in Tableau, which allows you to include but hide a column.
However here are two possible methods I've used in Power BI myself:
There could also be a custom visual out there that does this, but I'm not aware of one.
Regards,
Owen
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
10 | |
10 | |
9 | |
8 |
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
8 |