Forum Discussion

shroti_kapartiw's avatar
shroti_kapartiw
New Contributor
13 years ago

How to verify filter result obtained by using between operator

i want to verify filter result obtained by using between operator. The value must be >= data1 and must be <= data2.



Can i use "aqObject.CompareProperty" for above scenario.



Any other solution 

1 Reply

  • AlexKaras's avatar
    AlexKaras
    Icon for Champion Level 1 rankChampion Level 1
    Hi,



    What about

    if (not ((value >= data1) and (value <= data2))) then

      Log.Error('Value not in a range');

    ?