Expression using dataset

Can’t get this to work. Equal will work but not >= or <=.


had to use this to get it to work. Had to read the manual,yikes!

toInt({Root Container.dset}[{indirector}, “id”]) >= 3

A couple of other ways to do it depending on what you are looking for.

Example 1: visible/not visible based on rows in table
if({Root Container.dset.rowCount} > 0,1,0)

Example 2: visible/not visible based on specific lookup
in this case column “id” contains number ‘1’ in some row.
if(lookup({Root Container.dset.data},1,0,“id”),1,0)

Fantastic! I will definitely implement example 2. Thanks