Forum Discussion
- QuickBaseCoachDQrew CaptainThe function
Year([my date]) will return a numeric value like 2018- StephenAnguianoQrew CadetSo I can write the logic like so to get year:
If(Year([Program approved]) or Year([Permanently Rejected])) - QuickBaseCoachDQrew Captainwell that exact formula would not work as a text formula field type
But this would
IF(
not IsNull([Program approved]), ToText(Year([Program approved])),
not IsNull([Program Rejected]), ToText(Year([Program Rejected]))
) - StephenAnguianoQrew CadetThank you that worked great.