Hello,
I have a question about row refrence (but not the normal way i think?)
I have:
TABLE 1: ACOUNTS (A lot off)
TABLE 2: SUBSCRIPTION (Every Acount has a lot off subscriptions)
TABLE 3: USES OF SUBSCRIPTION (Every SUBSCRIPTION has 10 USES)
TABLE 4: LICENSENS PLATES (Every acounts has a lot of licenses plates)
When i ad one USE (table 3) -> I select one of the licensplates that was linked tot the acount where the license plate was linked to before this. (THis works fine)
But no when i ADD a LICENSEplate when i'm adding a LICENSE plate in the form of TABLE 3 -> It opens a FORM for THE LICENSE PLATE, but it doesn't fill the ACCOUNT name to the LICENSPLATE FORM
Is there an option to change this?
PHOTO TO BE CLEAR: NUMMERPLAAT = LICENSEPLATE in DUTCH.
HERE I PRESS "NEW" (I'm no in the subsription of the company "TRANSJOINT"
Here i need to select Transjoint again.. Is there an option to atomaticly add the "TRANSJOINT"?
Solved! Go to Solution.
Hi Hinse, I'm enjoying reading Dutch 🙂
The only issue is I wanted to see the reverse reference columns, these are automatically added columns with App Formula beginning with: REF_ROWS, but I couldn't find them in the photos; probably truncated.
It is OK. I'll make an analogy of your data structure and provide the expression based on this analogy, I hope it would help you.
Based on this setup, here's the expression to use as Initial_Value for column "accountID", in table License Plates:
IFS(
ISNOTBLANK([Related Subscriptions Uses I]),
ANY([Related Subscription Uses I].[subsAccountID]),
ISNOTBLANK([Related Subscriptions Uses II]),
ANY([Related Subscription Uses II].[subsAccountID]),
ISNOTBLANK([Related Subscriptions Uses III]),
ANY([Related Subscription Uses III].[subsAccountID]),
TRUE, ""
)
User | Count |
---|---|
28 | |
14 | |
4 | |
3 | |
3 |