Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
GaryChin
Contributor III
Contributor III

Create a new measure

Hi All,

There is three field:

measure_time; measure_point; measure_value;

And the measure_point contain 3 parameters Temp, CO2, HR

I want to create three new Measures to sort the value, call PointTemp, PointCO2 and PointHR

new measure.PNG

In the Edit expression, I tried to type 

{<measure_value ={"*"}, measure_point={"CO2"}>}

Expression 2.PNG

But displayed Error. How to write the expression?

 

Regards

Gary

 

 

Labels (1)
1 Solution

Accepted Solutions
Arthur_Fong
Partner - Specialist III
Partner - Specialist III

Try this:

CO2:

SUM({<measure_point={'CO2'}>}measure_value).

 

Repeat other values as new expressions.

View solution in original post

3 Replies
Arthur_Fong
Partner - Specialist III
Partner - Specialist III

I don't get you with:

I want to create three new Measures to sort the value, call PointTemp, PointCO2 and PointHR

Can you provide your expected result?

GaryChin
Contributor III
Contributor III
Author

The present data and Field

Data4.PNGField-present.PNG

 

Expected result

Data5.PNG

Field-exp.PNG

Thanks!

Arthur_Fong
Partner - Specialist III
Partner - Specialist III

Try this:

CO2:

SUM({<measure_point={'CO2'}>}measure_value).

 

Repeat other values as new expressions.