Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X
Hi, all
I have an infotable like this
Expected | low bound | up bound | real value |
---|---|---|---|
0.5 | 0.1 | 0.75 | 0.25 |
0.5 | 0.1 | 0.75 | 0.3 |
0.5 | 0.1 | 0.75 | 0.25 |
0.5 | 0.1 | 0.75 | 0.3 |
0.5 | 0.1 | 0.75 | 0.4 |
I have a problem, I want to get if real value>0.25 continuous then count +1, or count =0.
So to my condiction the infotable count is 2, not 3.
Could anyone give me some suggestion how I do?
Solved! Go to Solution.
You may use the "for" loop to go through the rows (myInfotablename.rows[RowNumber].realValue) with "if" condition comparing the (real value >0.25) and then setting your count variable appropriately.
You may use the "for" loop to go through the rows (myInfotablename.rows[RowNumber].realValue) with "if" condition comparing the (real value >0.25) and then setting your count variable appropriately.
It works!
Thank you