I’ve three tables (Client, Travel and Bank) and I created a form with link for each table with “Left Join” for to show all records of client:
example: table client (id_client, name, directions); Travel (Id_travel, country, id_client); Bank (Id_bank, name_bank, id_client).
records Table Client (1, Juan, Valpo;2, pedro, Vi?a;3, Sofia, re?aca)
records Table Travel (20, Chile,1; 30, Brasil,3)
records Table bank (100, EdwardsCity, 1;200, Scotiabank,2)
And I created a field for count records for each table, although it don’t have records in other tables, but I don’t know how to create the event for this field.
thanks