Ah. A Ref values references the entire row; you can’t “reference” a single column with a Ref value. You can, however, dereference a Ref value to get the column value from the referenced row. You’ve not shared enough information about you data to offer concrete suggestions on how to implement this for theses two tables.
Okay, so the user is completing a form for the Sign inout. They pick or add a value for Company Name. You then want the user to be able to choose (or add?) a Visitor Name value from a list of only names associated with the chosen company. Yes?
So the first time anyone comes to do work from a company
If the company is not in the system yet they add the company,
Than they review contractor policy and sign it.
If there company is already in the system, they just need to enter a new Visitor Name, each contractor from company needs to sign contractor policy, but this is only ever done once,
Going forward they can just select there name from the drop down.
You probably shouldn’t be using Ref for any of those four columns. Instead, use Text or Name type, and use Suggested Values to produce a list of existing values to choose from or add a new value.
Im trying to Use Referances wherever I can because any name edits, or company name edits changes everything which i Love,and i love the relational lists etc. for Easy Data overview
So its kinda Working now, just my reference is broken.
3 Tables.
A. Signinout
B. Contractor Policy Table
C. Company Table.
Table A
2 references.
Company References the Company Table
Visitor Name references the Contractor Policy Table
Table B
1 Reference
Company Name References the Companies Table
Table C
No References.
I’m getting a Broken Reference on Table A for Visitor Name.
This Formula Select(Contractor Policies[Visitor Name], [_THISROW].[Company Name] = [Company Name])
Without This Formula, everything works perfectly. It just shows all the names, but I only want the names related to the selected company to show up when a user signs in or out.
Any Reason Why it works fine without formula but shows broken referance with formula? Is it my formula? Not sure what I should Change.