Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
i have a Dimension (daycat) with the following values (and only these values) :
A
B
C
Other
I would like to exclude “other” automatically without having the end user to filter it out.
thoughts ?? Jerry
Use the below expression as your dimension in the chart:
hi - my 'Type' field is a master item dimension (DaysCatOrder). Does not work - any thoughts ? jerry
Can you please post a sample, so that I can see what I can do.
Thanks
Here is the Master Item Dimension expression:
MasterItem: DaysRR
=IF($(Days-Request-to-Requisition) >= 0 and $(Days-Request-to-Requisition) <= 3, '0-3',
IF($(Days-Request-to-Requisition) > 3 and $(Days-Request-to-Requisition) <= 5, '3+-5',
IF($(Days-Request-to-Requisition) > 5 and $(Days-Request-to-Requisition) <= 10, '5+-10',
IF($(Days-Request-to-Requisition) >= 10, '10+','NA'))))
Here is the results:
I do not want to show the NA bar
By excluding 'NA' in the expression should drop that bar automatically. Something link below:
=IF($(Days-Request-to-Requisition) >= 0 and $(Days-Request-to-Requisition) <= 3, '0-3',
IF($(Days-Request-to-Requisition) > 3 and $(Days-Request-to-Requisition) <= 5, '3+-5',
IF($(Days-Request-to-Requisition) > 5 and $(Days-Request-to-Requisition) <= 10, '5+-10',
IF($(Days-Request-to-Requisition) >= 10, '10+'))))
Hope this helps.