I have 2 sheets:
Sheet 1 - uses a form for initial information. Additional columns exist to provide resolution information, including assigned to (contact list) and closed (checkbox)
Sheet 2 - used to lookup values to populate the assigned to column on Sheet 1 based on the Region provided via the form.
I am using Index(Match) to populate the assigned to column using the data from Sheet 2. However, I only want it to look at sheet 2 for the data if closed on sheet 1 is unchecked. If the closed is checked I want it to leave the current data in the assigned to column as is (no changes)
I tried the following formula:
=IF(Closed@row = 0, INDEX({Region}, MATCH(Region@row, {Name}), 0)). When closed is checked it changes the value in the Assigned to column to blank.
Thoughts?