Hello everyone!
I am working on a database for an artist's estate containing information about all of his artwork. There are two related files. Lets call them "artist_main" and "artist_owners". In "artist_owners" information about the artwork's current owner, like name, address etc., is stored. As there are owners who do not wish to appear in any listing or publication, I have a field called "owner privacy" that has two options to choose from: public or private (value list, radio button set).
In the future, art historians will come to the estate to look at the database. They will only be allowed to look at the "artist_main" file.
What I am trying to do now is to have a layout in my "artist_main" file showing the owner's data - but only if "public" is chosen in "artist_owners".
I've tried to do an IF calculation for the individual fields (in this case last name)
If ( provenance::owner privacy = "public" ;owner last name = provenance::owner last name ; "private" )
But unfortunately, this doesn't work...
Has anyone a suggestion?
Thanks!