The Airtable Community will undergo scheduled maintenance on September 17 from 10:00 PM PST to 11:15 PM PST. During this period, you may experience temporary disruptions. We apologize for any inconvenience and appreciate your understanding.
Mar 10, 2022 06:58 AM
Hey All!
I am trying to check to ensure that all timesheets have a corresponding scheduling item but my FIND formula is only working half the time. Any help would be appreciated!
IF(FIND(Timesheet,{Scheduled Dates (from Task)})>0,"",“Missing!”)
Solved! Go to Solution.
Mar 10, 2022 07:47 AM
You are doing your find on a lookup field. When there is more than one value in the lookup field, you need to convert it to a text string from a list.
Try this …
IF(
NOT(
FIND(Timesheet, {Scheduled Dates (from Task)} & "")
),
"Missing!"
)
Mar 10, 2022 07:47 AM
You are doing your find on a lookup field. When there is more than one value in the lookup field, you need to convert it to a text string from a list.
Try this …
IF(
NOT(
FIND(Timesheet, {Scheduled Dates (from Task)} & "")
),
"Missing!"
)
Mar 10, 2022 09:03 AM
You are a life saver thanks so much!!!