Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Nora104
Partner - Creator
Partner - Creator

Why are the results of these two formulas different?

Formula 1:

count({<Vip_TypeId={"3"},Year,Month,Week,Store_Category,Store_Region,Store_Name>} total distinct %Account_Id)

Formula 2:

count({<Vip_TypeId={"3"}>} total distinct %Account_Id)

Thank you!

1 Solution

Accepted Solutions
GaryGiles
Specialist
Specialist

If you have any filters applied to Year, Month, Store_Category, Store_Region or Store_Name, these expressions could yield different results.  Including field names in set analysis without any values will cause any filter on that field to be ignored for that expression.

View solution in original post

2 Replies
GaryGiles
Specialist
Specialist

If you have any filters applied to Year, Month, Store_Category, Store_Region or Store_Name, these expressions could yield different results.  Including field names in set analysis without any values will cause any filter on that field to be ignored for that expression.

Nora104
Partner - Creator
Partner - Creator
Author

Thank you! I understand it!