Forum Discussion
Tob_P
2 years agoHelper V
Statement formatting
Hi there,
Can someone advise how I can rectify this statement please? If the agreement end date is in this year, then I want the custom column to display 'Active', otherwise 'Inactive'.
- Anonymous2 years ago
(pay attention to case sensitivity)
= if Date.IsInCurrentYear([Agreement End Date]) then "Active" else "Inactive
--Nate
2 Replies
- AnonymousNot applicable
(pay attention to case sensitivity)
= if Date.IsInCurrentYear([Agreement End Date]) then "Active" else "Inactive
--Nate
- Tob_PHelper V
Thank you very much Anonymous