Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hallo,
bestimmt eine Kleinigkeit, aber ich verzweifel gerade daran 🙂
Ich habe das Feld ARTIKEL und das Feld ERSTELLER. Jetzt möchte ich zählen, wieviel Artikel jeder Ersteller angelegt hat. Da bei den Erstellern aber zwei dabei sind, die nicht dazugehören, würde ich die gerne ausschließen.
Mit einem klappt es
if (ERSTELLER<>'AAAA', distinct count ARTIKEL)
wie bringe ich aber jetzt den Ersteller BBBB mit rein?
if (ERSTELLER<>'AAAA' AND Ersteller<>'BBBB', distinct count ARTIKEL) funktioniert nicht, selbe mit OR
Vielen Dank schon mal 🙂
if its qliksense its : "" instead ''
=count({< ERSTELLER={"*"}-{'AAAA','BBBB'}>} distinct ARTIKEL)
if not can you share a sample data or your filel
QLikview ist Case sensitive
Der zweite Ersteller ist kleingeschrieben, der erste Gross! Wenn es sich um das gleiche Feld handelt, ist das das Problem.
Der Ausdruck ist auf jeden Fall korrekt (man könnte noch optisch trennen ((ERSTELLER<>'AAA') and (ERSTELLER<>'BBB'))
Hi,
daran liegt es nicht, das war nur falsch rauskopiert.
Die Formel im Diagram ist wie folgt:
if ((Ersteller<>'AAAA') and (Ersteller<>'BBBB'), count({$<Materialart={'xxx'}>}DISTINCT Artikel))
Ergebnis: AAAA wird ausgeschlossen, BBBB ist immernoch da
I used an automatic translator!!!
one solution :
=count({< ERSTELLER={'*'}-{'AAAA','BBBB'}>} distinct ARTIKEL)
Example :
Thanks, but it doesn't work at all. Doesn't it show any readings at all
if its qliksense its : "" instead ''
=count({< ERSTELLER={"*"}-{'AAAA','BBBB'}>} distinct ARTIKEL)
if not can you share a sample data or your filel
Super! It works!
Thanks a lot!