Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi.
We have classified our articles into A,B,C etc.
I now want to show the articles not classified, but all other selections (Division, Year, etc.) must still work.
I tried it like this:
sum({$-<[Ref_ABCD]={'A','B','C','D'}>}[LB_W_AJ_$(v_BerichtsWaehrung)])
Calculated Value is correct, but in the chart, the x-axis (Year-Month) is gone; only 1 value is displayed.
Regards,
Reinhold
Hi
Try this :
sum({$<[Ref_ABCD]-={'A','B','C','D'}>}[LB_W_AJ_$(v_BerichtsWaehrung)])
Minus sign before = sign
Hi
Try this :
sum({$<[Ref_ABCD]-={'A','B','C','D'}>}[LB_W_AJ_$(v_BerichtsWaehrung)])
Minus sign before = sign
sum({$<[Ref_ABCD] -={'A','B','C','D'}>}[LB_W_AJ_$(v_BerichtsWaehrung)])
or
sum({$<[Ref_ABCD]={'*'}-{'A','B','C','D'}>}[LB_W_AJ_$(v_BerichtsWaehrung)])
ok. working.
How can I now add the articles with no-value in this field (Ref_ABCD) ?
You mean Null Values?
yes
Hi
May be this
sum({$<[Ref_ABCD]={'*',""}-{'A','B','C','D'}>}[LB_W_AJ_$(v_BerichtsWaehrung)])
But the Best would be to affect a value to null cells
I agree.
I now check NullValue in the Load-Script and assign a value such as 'n.n.', what can easily be used as a filter in SET-Analysis.
Thx!