Forum Discussion
ArchiveUser
8 years agoQrew Captain
Hi Eva,
I added a new filed "check data input". Is there a formula to make it show "not completed entry" if any field of "name", "supplier", "part number", "location" is empty?
Thank you!
I added a new filed "check data input". Is there a formula to make it show "not completed entry" if any field of "name", "supplier", "part number", "location" is empty?
Thank you!
- DanLadner18 years agoQrew TraineeTry something like this:
if( [Name]="" or [Supplier]="" or [Part Number]="" or [Location]="", "Not Completed Entry" )
You could get a bit fancier and have it list out which values are missing, as well.