Re: Wildcards in in mulit-critera Data summary in a portal... -
09-28-2005
, 08:43 PM
Your not doing anything wrong, FileMaker doesn't support wild cards in
a relationship.
If you want to filter the portal by From & To locations you need a calc
field in the LOADS_LIST table which concatenates From, To, and From_To
all carriage return separated.
In the LOAD_LOOKUP table you keep your existing 2 fields and also add a
calc which evaluates to the From & the To.
You link the tables using the 2 calcs.
Both calcs need to be setup so that the From & the To can not be
interchanged otherwise when you select CA as a From state, the portal
will show deliveries From & To there.
I would suggest something like;
"From" & PickupState & "¶" &
"To" & DropState & "¶" &
PickupState & DropState
The calc in the LOADLOOKUP table would be something like;
Case (
IsEmpty ( DropState ), "From" & PickupState,
IsEmpty ( PickupState ), "To" & DropState,
PickupState & DropState ) |