Return 值基于不同列中的值

Return value based on value in different column

在 excel table 中,想要 return 列“期权年”中的一个值,基于不同列“合同年”中的值。 合同年 2019 应 return 文本“基准年” 合同年 2020 应 return 文本“选项 1” 合同年 2021 应 return 文本“选项 2” 等等

尝试过很多这样的组合:

=choose([@[contractyear]],"Base","Opt 1","Opt 2")

可能

=IF([@[contractyear]]=2019,"Base Year","Option "&[@[contractyear]]-2019)