I have a project with a master table "cartype" and a child table "reviews". I only want to allow each user to post one review for each kind of car and also only if their GroupID matches a specific value. So what I would like to do is on the VIEW page of the cars table conditionally show/hide a custom "Add New Review" button to that page based on if that username has previously posted a review for that car. Obviously this involves both a lookup and a conditional display/or activation of an Add button.
any idea on how to accomplish this? A code snippet would be highly appreciated.