Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
So I'm familiar with sets like:
{$<Country = {"*"} - {'Sweden'}>}
{$<Country -= {'Sweden'}>}
But what this also means that I will get ALL other contries except Sweden, what if I have 5 countries showing, 10 possible, and now I want to make sure that Sweden is never shown. How can I exclude it, while still allowing a filter for the others?
You might need to combine the two modifiers into one
Sum({<[Store Type2] = {'Concept', 'SiS', 'Soft shop'}, Country -= {'Sweden'}>} If(WildMatch(SeasonCalc, vCurrentSeasonCalc), Fsgantal*Shoes))
This should do it (your second modifier)
{$<Country -= {'Sweden'}>}
So, {$<Country -= {'Sweden'}>} should exclude Country = Sweden with or without selection. But will also exclude Countries which are not in your current selection. Is this not what you want?
You might need to combine the two modifiers into one
Sum({<[Store Type2] = {'Concept', 'SiS', 'Soft shop'}, Country -= {'Sweden'}>} If(WildMatch(SeasonCalc, vCurrentSeasonCalc), Fsgantal*Shoes))
Try it with:
{$<Country *= {"*"} - {'Sweden'}>}
or maybe
{$<Country = p({< Country -= {'Sweden'}>} Country)>}
- Marcus