Forum Discussion
QuickBaseCoachD
8 years agoQrew Captain
The function
Year([my date]) will return a numeric value like 2018
Year([my date]) will return a numeric value like 2018
- StephenAnguiano8 years agoQrew CadetSo I can write the logic like so to get year:
If(Year([Program approved]) or Year([Permanently Rejected])) - QuickBaseCoachD8 years agoQrew 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]))
) - StephenAnguiano8 years agoQrew CadetThank you that worked great.
- QuickBaseCoachD8 years agoQrew CaptainThx for letting me know.!