Help

IF statements with field types

2296 3
cancel
Showing results for 
Search instead for 
Did you mean: 
Bryce_Munn
4 - Data Explorer
4 - Data Explorer

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.

3 Replies 3

If I understand you, you could:

  1. Create a Lookup to get the original linked data
  2. Create a SingleText field to enter the data manually if you want.
  3. Create a Formula field which will be the final field where you can see the result: IF(Manual,Manual,IF(Original, Original, 'Enter something!')))

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 ?

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:

3641fc3eb70adbe88206bf24610fde608965620d.png

Captura de pantalla 2018-07-12_06-34-56_p. m..png

Cleaner:

058c4ff2421f4643cb18adc8018f6cc77e010260.png

Formula:

IF({Optional}, {Optional}, IF(Lookup, Lookup, "Enter something!"))