Hello all,
I have a smartsheet where one cell (Item type) is a multiple check-box type, with the following values:
00 Project, 01 Submittal Task, 02 Vendor Drawing, 03 Product Data, 04 Samples, 05 Production release.
The smartsheet is a tracker for our submittals for our company. The engineer will enter a line item (i.e. Cabinets on job XYZ, and then check off the relevant submittals/actions that line item might need).
I have a date field i am trying to have ONLY show when "05 Production release" is ONE OF the checked boxes in the "Item type" field.
I am getting an #INVALID VALUE error from my formula below (using just TRUE/FALSE for now to test it):
=IF(FIND("05 Production release", [Item Type]@row, 0), "TRUE", "FALSE")
Is there a way to search for that text string correctly in an IF statement?