Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone,
I want a chart, where all "Partner_Adressnummer" are listed, who have no Data in the Table "Seminarbuchungen"
I thought, maybe with this formula:
=only({1-$<SeminarBuchungsID={'0'}>} Partner_Adressnummer)
But that did not work.
Has anybody an idea?
Tablerelations as screenshot enclosed.
Regards
Michael
Hi,
I'd rather try using the E() element expression in set analysis, something like
Only({< Partner_Adressnummer = E(SeminarBuchungsID) >} Partner_Adressnummer)
that reads like "return the values in field Partner_Addressnummer that have all values in SeminarBuchungsID excluded".
What type of chart are you using? What are the dimensions?
Hope that helps.
Miguel
EDIT:
Other option more likely to work:
Only({1 - < SeminarBuchungsID = P(SeminarBuchungsID) >} Partner_Adressnummer)
that reads like "return all values in dimension Partner_Adressnummer except for those that have some SeminarBuchungsID".
Hi,
I'd rather try using the E() element expression in set analysis, something like
Only({< Partner_Adressnummer = E(SeminarBuchungsID) >} Partner_Adressnummer)
that reads like "return the values in field Partner_Addressnummer that have all values in SeminarBuchungsID excluded".
What type of chart are you using? What are the dimensions?
Hope that helps.
Miguel
EDIT:
Other option more likely to work:
Only({1 - < SeminarBuchungsID = P(SeminarBuchungsID) >} Partner_Adressnummer)
that reads like "return all values in dimension Partner_Adressnummer except for those that have some SeminarBuchungsID".
Thanks, the second solution was very helpful