Filemaker Pro advanced Set field, perform find. -


im writing script find records. since of find criteria in global fields etc... im

going layout enter find mode set fields

thats no problem, need set field has multiple criteria, or..i tried few things not nailing it. below need. need out date records >= global start date or null

set field [table::outdate; ">=" & global::g_start or "="

any appreciated..

a date field >= global date or null.

an or find requires 2 (or more) find requests. if you're scripting this, do:

enter find mode[] set field [ table::outdate ; ">=" & global::g_start ] new record/request set field [ table::outdate ; "=" ] perform find[] 

note: there's no need set variables - global fields remain accessible in find mode.


Comments

Popular posts from this blog

java - pagination of xlsx file to XSSFworkbook using apache POI -

Unlimited choices in BASH case statement -

apache - How do I stop my index.php being run twice for every user -