Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Mt3
Contributor III
Contributor III

Multiple alternate states within a bookmark

Hi,

I was wondering if any of you have assinged 2 or more alternate states to a bookmark selection in set analysis?

I have tried below and result are following:

sum({1-[Group 1]::BM01} Sales) - works fine

sum({1-[Group 1,Group2]::BM01} Sales) - does not bring any results

sum({1-([Group 1]+[Group2])::BM01} Sales) - does not bring any results

sum({[Group 1][Group2]::BM01} Sales) - does not bring any results

 

Also, do you think it would be possible to add multiple bookmarks, to the selection? Exemplary:

 sum({1-(([Group 1,Group2]::BM01) + ([Group 1,Group2]::BM02) )} Sales)

I have checked that  sum({1-(([Group 1]::BM01) + ([Group2]::BM02) )} Sales) gives a result but skewed in numbers.

1 Solution

Accepted Solutions
chris_djih
Creator III
Creator III

i would guess you have to do the operations the other way around:

try something like this: sum({1-([Group 1]::BM01+[Group2]::BM01)} Sales)

If you found help, mark the correct answer and give some likes to ALL contributors, that tried to help.

View solution in original post

1 Reply
chris_djih
Creator III
Creator III

i would guess you have to do the operations the other way around:

try something like this: sum({1-([Group 1]::BM01+[Group2]::BM01)} Sales)

If you found help, mark the correct answer and give some likes to ALL contributors, that tried to help.