I am currently trying to pull information from an intake form directly into a project task sheet based on which boxes the user checks for individual project needs. The form has an automatic number field that sets the project request number, and the goal is to be able to simply add that request number to the correct cell in the project sheet and have the rest of the information populate automatically.
I have set the intake form up in two ways: one as a multi-select dropdown menu based on request category, and another as individual check boxes for each choice which appear via logic based on the category.
I was struggling to get individual values from multiselect drop-downs to appear, so I switched to the checkbox method, which seemed more straightforward but has turned out to be just as difficult. I just need to get these formulas correct once so that I can save a template for the project task sheet, but I am stumped. Everything I do comes back as invalid or unparseable.
I've tried VLOOKUP, which is perfect for all the other cells from the form submission, but I can't seem to pull data and have it appear properly for any checked boxes.
This is the formula I've used successfully on other parts of the sheet: =VLOOKUP(Task1, {CLS Marketing & Media Request Range 2}, 24, false)
My most recent attempt for the checkboxes was a combo of IF, AND, CONTAINS to try to identify the row by request number and then pull value info from the first row with check boxes.
=IF(AND(CONTAINS(Task@row, {CLS Marketing & Media Request #}), {CLS Marketing & Media Request - Flyers} = 1), "Yes", "No")
If I need to get rid of the checkboxes and turn them into dropdown menus, I can do that, but I was having trouble doing the same with multi-select dropdowns.
Any help would be appreciated.