I'd like to create a series of formulas in a sheet that will automatically check a checkbox column if certain conditions exist.
The 2 sheets are ATTENDANCE and SIGN IN. The Sign In sheet has attendee names in the first (non-Primary) column (in the order that the attendee signs in, not alphabetized) and has a date in another column. The Attendance Sheet has a list of all potential attendee names in the first (non-Primary) column and each column after that is associated with a date. Those columns are checkbox columns, the intent being that if a person attended on a certain day, the appropriate column will be checked. I have a row at the top of the Attendance sheet that lists the actual date in date format so that the formulas have a fixed reference to pull from.
In order to satisfy the conditions tocheck the box, I need to first check the Sign In sheet for the attendee name. Then the formula needs to look at the date column to determine if the date listed on the Sign In sheet is the date at the top of the column on the Attendance sheet.
In my mind, this is an INDEX/COLLECT situation with something layered on top of it to force the checkbox, but my current formula is returning an #UNPARSEABLE error. The formula that I'm using at the moment is below.
=INDEX(COLLECT({Sign In: Dropdown thru Rehearsal Date}, {Sign In: Dropdown column}, [$Dropdown Name]6, {Sign In: Rehearsal Date column}, [May 8]$1), 1)
Thoughts?