I know the answer has to be something simple, but I am just not finding the answer.
If the Favorites column has a check mark, then populate (the cell containing the formula) with the Initiative Project Name.
Maybe I'm not using the right function? 🤔 It seems logical to me, IF this row has a check, enter this data from the same row.
=IF({Favorite is Checked} = 1, {InitiativeProjectName}) ...invalid operation
=IF({Favorite is Checked}, = {InitiativeProjectName}) ...invalid data type
=IF({Favorite is Checked} = 1, ="{InitiativeProjectName}") ...invalid operation
=IF($[Favorite is Checked]@row = 1, $[InitiativeProjectName]@row) ...unparseable
Thank you.