Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
Could somone help ?
for BatchTypeGlobal starts with "CIP" you can use
sum({$<BatchTypeGlobal={"CIP*"}>} Value)
The BatchTypeGlobal modifier should be:
BatchTypeGlobal={"CIP*"}
-Rob
Do this in place of the WildMatch.
..., BatchTypeGlobal={"CIP*"}>} Value)
for BatchTypeGlobal starts with "CIP" you can use
sum({$<BatchTypeGlobal={"CIP*"}>} Value)
The BatchTypeGlobal modifier should be:
BatchTypeGlobal={"CIP*"}
-Rob
Thanks all for your help.