I think I wasn’t clear.
OK, I have 3 tables
Table A: Doctors
Table B: Tasks
Table C: Major
I want to make Table B has a filed that If any one from Table A linked to Table C, then one field on Table B can write “Professional”, otherwise “amateurish”
The basic idea is, if any doctor has any linked field on table c, the table A can tell, their opinion is professional.
something like this.
@Justin_Barrett
In that case, I would put the formula field into your [Doctors] table. Name it something like {Professional/Amateur}, and use this formula:
IF({Link to Major}, "Professional", "Amateur")
Replace {Link to Major} with the name of your field that links to the [Major] table. This formula will mark each doctor’s record appropriately based on whether or not they have any links to that table.
In any other table that links to a doctor, like it sounds your [Tasks] table does, you can look up that professional/amateur status with a Lookup field:
