Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi
there is set analysis used in a straight table. There will be multiple dimensions filtered on. however, one of them needs to be ignored for this measure . dimension to be ignored = Forwarder.
set analysis:
Sum({$<AFWeekType={'AllocForecast'}>}aggr(max(distinct AFAllocation), (Key1,OrderKey)))
There are other measures in the table that are ok to be affected by the 'Forwarder' filter. just this one measure needs to ignore selection. Tried the following but not returning the required result:
Sum({Forwarder}{$<AFWeekType={'AllocForecast'}>}aggr(max(distinct AFAllocation), (Key1,OrderKey)))
Appreciate your help please
Perhaps, like this.
Sum(DISTINCT{<Forwarder=>}Aggr(Max({$<AFWeekType={'AllocForecast'},Forwarder=>} AFAllocation), Key1, OrderKey))
Hi,
Can you try this...
Sum({$<Forwarder=,AFWeekType={'AllocForecast'}>}aggr(max(distinct AFAllocation), (Key1,OrderKey)))
Perhaps, like this.
Sum(DISTINCT{<Forwarder=>}Aggr(Max({$<AFWeekType={'AllocForecast'},Forwarder=>} AFAllocation), Key1, OrderKey))
That worked. thank you.
I had to remove the distinct to show the correct numbers.