Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Let say I want to show Men's Clothes and Men's Footwear as "Men's Clothes and Footwear". Only for this graph.
hi
if it's only for this chart you can do something like this in your dimension
if(wildmatch(Category, 'Men*Clothes*','Men*Foot*')>0,'Mens Clothes and Footwear',Category)
Perhaps this way IF you have only 2 values related Mens?
if(wildmatch(Category, 'Men*'),'Mens Clothes and Footwear',Category)
hi
if it's only for this chart you can do something like this in your dimension
if(wildmatch(Category, 'Men*Clothes*','Men*Foot*')>0,'Mens Clothes and Footwear',Category)
Perhaps this way IF you have only 2 values related Mens?
if(wildmatch(Category, 'Men*'),'Mens Clothes and Footwear',Category)