Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
oakfc
Regular Visitor

how to avoid aggregation in table

hi expert, I created a table want to see every detail data, but not all dimensions are required, when I did not drag the column2 into table, it summed up automatively even I did set don't summarize

oakfc_0-1711597871026.png

 

what I want is the just show the column1 and value and the value not to sum up, is there any solution to this problem?

notice that the value should be integer rather text

here is the original data look like:

oakfc_0-1711598637406.png

 

1 ACCEPTED SOLUTION
Ritaf1983
Super User
Super User

Hi @oakfc 
There's no option to display the data without summarizing on the row level if it's not unique. That's why you only see one row for 'A' instead of two when using 'column2'.
So if you need to see all the rows you always neet to combine columns with som unique bslues column or the column that you already have like in your picture here :

Ritaf1983_0-1711599556841.png

or to create an index column and use it 

Ritaf1983_1-1711599689333.png

Ritaf1983_2-1711599775748.png

To make an index similar to hidden, just minimize its width:

Ritaf1983_3-1711599877240.png

pbix with example is attached

If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly

View solution in original post

2 REPLIES 2
Ritaf1983
Super User
Super User

Hi @oakfc 
There's no option to display the data without summarizing on the row level if it's not unique. That's why you only see one row for 'A' instead of two when using 'column2'.
So if you need to see all the rows you always neet to combine columns with som unique bslues column or the column that you already have like in your picture here :

Ritaf1983_0-1711599556841.png

or to create an index column and use it 

Ritaf1983_1-1711599689333.png

Ritaf1983_2-1711599775748.png

To make an index similar to hidden, just minimize its width:

Ritaf1983_3-1711599877240.png

pbix with example is attached

If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly

nickchobotar
Skilled Sharer
Skilled Sharer

Quick edit.  So, true as @Ritaf1983  pointed out due to cardinality it's not possible to use the "Don't summarize" option which is annoying.   

I can suggest you a trick or rather a hack to circumvent this. The whole idea is to create a duplicate column and concatinate an empty string repeated randomly to the data from the "VALUE" column.  
 
Here is the DAX but you can accomplish the same in M too. 

Value2 = 'Table'[Value] & REPT( UNICHAR(32), INT(RAND() * 1000))

 

nickchobotar_0-1711601882180.png

 

nickchobotar_1-1711601934330.png

 

Thanks

Nick -

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.