Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
woody1982
Contributor III
Contributor III

Filtern auf gefüllte Felder

Hallo,

hätte da noch eine Anfängerfrage, die mich gerade zum verzweifeln bringt 🙂

Wie kann ich einen Filter setzen, der nur gefüllte Felder anzeigt?

Formel:

Count(DISTINCT {$< BS_Year={">=2014"}>*<NUMMER={"700"}>*<REGEL={" "}>} ZEILENSATZ)

Das Feld "REGEL" soll immer gezählt werden, wenn etwas drinnsteht.

{"*"} funktioniert nicht, {><" "} funktioniert nicht...

Vielen Dank 🙂 

Labels (1)
1 Solution

Accepted Solutions
Taoufiq_Zarra

I always use an automatic translator 😁

but if I understood correctly, try this version :

Count(DISTINCT {$< BS_Year={">=2014"}>*<NUMMER={"700"}>*<REGEL={"=len(REGEL)>0 "}>} ZEILENSATZ)

 

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉

View solution in original post

2 Replies
Taoufiq_Zarra

I always use an automatic translator 😁

but if I understood correctly, try this version :

Count(DISTINCT {$< BS_Year={">=2014"}>*<NUMMER={"700"}>*<REGEL={"=len(REGEL)>0 "}>} ZEILENSATZ)

 

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉
woody1982
Contributor III
Contributor III
Author

Thanks a lot!