Hi,
In table ‘School’ I want to check two attributes, street and house number and see if they in combination appear in table ‘Address’. I know how to make a lookup which can check if street is in reference table Address, but I want to know if the combination street + house number as a record is in another table as a record.
So below record 1 is valid, but record 2 and 3 both have house numbers in Address table, but not in combination with the street. Is this possible in ONE Web?
School | street | house number |
1 | West street | 45 |
2 | West street | 47 |
3 | West street | 49 |
Address | street | house number |
1 | West street | 45 |
2 | East street | 47 |
3 | North street | 49 |