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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Beginner_Qlik1
Partner - Contributor III
Partner - Contributor III

Error in expression

Hi,

 

I want to sum of all Values for which ValueCategoryGlobal are "06-CIP Cold Water Consumption" and "06-CIP Hot water Consumption" and BatchTypeGlobal starts with "CIP". What is worng with my expression.

Beginner_Qlik1_0-1714660101186.png

 

 

Could somone help ?

 

Labels (1)
2 Solutions

Accepted Solutions
maxgro
MVP
MVP

for BatchTypeGlobal starts with "CIP" you can use 

sum({$<BatchTypeGlobal={"CIP*"}>} Value)

View solution in original post

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

The BatchTypeGlobal modifier should be:

BatchTypeGlobal={"CIP*"}

-Rob

View solution in original post

4 Replies
BrunPierre
Partner - Master II
Partner - Master II

Do this in place of the WildMatch.

..., BatchTypeGlobal={"CIP*"}>} Value)

maxgro
MVP
MVP

for BatchTypeGlobal starts with "CIP" you can use 

sum({$<BatchTypeGlobal={"CIP*"}>} Value)

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

The BatchTypeGlobal modifier should be:

BatchTypeGlobal={"CIP*"}

-Rob

Beginner_Qlik1
Partner - Contributor III
Partner - Contributor III
Author

Thanks all for your help.