Forum Discussion
QuickBaseCoachD
6 years agoQrew Captain
There is no equivalent function but you can also do something like this,
Case(Year([My Date Field]),
2018, [Rate 2018],
2019, [Rate 2018],
2030, [Rate 2018])
But that is not really a Quick Base way of doing things. There are better ways with having a table and then a look up field. Perhaps if you explain what you were trying to accomplish we can suggest a table structure that would do that more elegantly.
Case(Year([My Date Field]),
2018, [Rate 2018],
2019, [Rate 2018],
2030, [Rate 2018])
But that is not really a Quick Base way of doing things. There are better ways with having a table and then a look up field. Perhaps if you explain what you were trying to accomplish we can suggest a table structure that would do that more elegantly.