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

Limit fields in dimension

Hello all,

Within my data set, I have some groupings that are sub totals, is there a way to remove these from showing in some charts?

For example, I have a list including Sub Total and Total in a group, can I create a calculated field that removes those two?

With thanks,

Simon

1 Solution

Accepted Solutions
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Try this,

if(not wildmatch(Field,'Total','Sub total'),Field)

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!

View solution in original post

5 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

     You can use the calculated dimension such as

     if(Field <> 'Total',Field)

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Not applicable
Author

Hi Kaushik,

I've given that a try, but it seems to have removed the name from the axis, but included the data under "-".

Any idea why?

Not applicable
Author

Got it, I suppressed the null values.

How can I put multiple in there? Such as Total and Subtotal?

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Try this,

if(not wildmatch(Field,'Total','Sub total'),Field)

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Not applicable
Author

Magical. Thank you for your help