I am trying to create a drop down list to either select whether a Risk is Open or Closed. The data in Google Sheets comes from a Google form.
I am using the Array Formula (because new rows are added through the form which removes any previous formulas.
This is the code I have used so far:
=ARRAYFORMULA(IF(LEN(D2:D300),E2:E300,Sheet3!B3:B4))
Where Sheet3 has my 'Open' and 'Closed' options as the 2 drop down choices.
Can anyone help me :(