Jump to content

Nested IF Statement in SEEQ


Recommended Posts

Hi All,

I'm trying to perform Multiple IF Statement in seeq but don't have any clarity as to how should i perform.

Can anyone tell me how should i apply it.

I have gone through the Below links as well which are already available in seeq forum,it seems they're not helping either.

Link :- 

 

Regards,

Jitesh Vachheta

 

 

 

 

 

Link to comment
Share on other sites

Hi Jitesh,

I tried to develop a nested if with the following logic:

if (temp > 66)
{
    if (rh > 50)
    {
        temp = 1/temp    ;
    }
    else if (wetbulb < 75)
    {
        temp *= 2; 
    }
}

If no condition is met, the temperature should not be modified.

image.png.d685cd18f0945745c63f44eb32a176a7.png

image.thumb.png.bd2c6877085a277946acab766f29e2f5.png

However it would be great if you could provide an example of what you are trying to achieve.

Regards,

Thorsten

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...