Jul 12, 2018 06:10 AM
Can you write a logical if statement based on a data base. So if the information in the database exist it populates and fills out the fields as it does now using look up. If it returns N/A can the field types for each field in that record then be single line text for a manual input. Either by the person in the form filling it out or me inside the table.
Jul 12, 2018 07:28 AM
If I understand you, you could:
IF(Manual,Manual,IF(Original, Original, 'Enter something!')))
Jul 12, 2018 07:32 AM
Thank you. As of now i have it done with a look up to link the data. But can i do it with a formula in the field to automatically link it like look up and if the look up returns empty to switch the field to manully enter the information ?
Jul 12, 2018 09:36 AM
No, you can’t add a formula in a Lookup, nor add a lookup in a Formula. But you could hide the Lookup field that you have.
You can’t switch the type of a field in just one record, you do for all of them (this is not Excel). You can add the third field I told.
Screenshots:
Cleaner:
Formula:
IF({Optional}, {Optional}, IF(Lookup, Lookup, "Enter something!"))