Forum Discussion
quapple
Jan 02, 2024Copper Contributor
I want to make a cell equal a value based on the value a type in another cell
Happy new year! I have a list of funders in a column and there are two types of funders: you're either Ontario Health (which is classified as a Fund Type 3 funder) or you're anything else (which we...
- Jan 02, 2024
=IF([@Funder]="","",IF([@Funder]="Ontario Health","Fund Type 3","Fund Type 2"))
This formula returns the intended result in my example.
OliverScheurich
Jan 02, 2024Gold Contributor
=IF([@Funder]="","",IF([@Funder]="Ontario Health","Fund Type 3","Fund Type 2"))
This formula returns the intended result in my example.
quapple
Jan 02, 2024Copper Contributor
Thank you so much! I really appreciate the quick reply, you're the best.