Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a pie showing various "error description".
I would like a pie with one specific error description vs all of the rest.
Shipment = 6
Design = 2
Supplier = 3
I would like to see for example shipment errors vs the rest ( pie with 6 , 5 )
Thanks !
Try a calculated dimension:
=if(Field = 'Shipment',Field,'Rest')
or in script:
if(Field = 'Shipment',Field,'Rest') as Field1;
Try a calculated dimension:
=if(Field = 'Shipment',Field,'Rest')
or in script:
if(Field = 'Shipment',Field,'Rest') as Field1;
Thanks , worked like a charm