Forum Discussion
Others line - group
- Anonymous5 years ago
Hi Portrek ,
You need to use BLANK() instead of ISBLANK(). The calculated column here is better than the measure, I would recommend the calculated column.
Calculated column is
Column = IF([PART]=BLANK(),"OTHERS",[PART])Both the year column and the calculated column select don't summarize, and the ITEM column selects count.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hey Portrek ,
maybe I'm do not understand your requirement 100%, but I would create a new calculated column based on the following DAX statement:
new column:
if( isblank( 'yourtablename'[Part] ) , "OTHERS" , 'yourtablename'[Part] )
Then drag the columns Year, new column, and item to a table visual.
Change the aggregation for the column item to Count and your done.
Hopefully, this provides what you are looking for.
Regards,
Tom
Hi Tom. Thanks for your anwser, but it's not that..
I need to make a measure that within the row context sort the existing values and add a row with the sums of the items that don't have any additional trappings as if they were the remaining items..
- Anonymous5 years agoNot applicable
Hi Portrek ,
You need to use BLANK() instead of ISBLANK(). The calculated column here is better than the measure, I would recommend the calculated column.
Calculated column is
Column = IF([PART]=BLANK(),"OTHERS",[PART])Both the year column and the calculated column select don't summarize, and the ITEM column selects count.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.