Forum Discussion
Formatting with date ranges
- Aug 21, 2023
How about
=IFS(E16="", "",E16<TODAY(), "No", E16<EDATE(TODAY(), 4), "At Risk", TRUE, "Yes")
How about
=IFS(E16="", "",E16<TODAY(), "No", E16<EDATE(TODAY(), 4), "At Risk", TRUE, "Yes")
- JoMoWasHereAug 21, 2023Copper Contributor
Apologies, but is there a way around the EDATE? It doesn't seem like SharePoint likes/supports EDATE. Could be wrong though, but I keep getting an error and even when I isolate EDATE on a test column, it comes out as an error as well.
P.S. Pretty amazing that you figured out E16 is Renewal Date. Just noticed that.
- SergeiBaklanAug 22, 2023Diamond Contributor
EDATE() is not supported in SharePoint, list of available functions is here Examples of common formulas in lists - Microsoft Support
Equivalent of
=EDATE( TODAY(), 4)
could be
=DATE( YEAR(TODAY() ), MONTH( TODAY() )+4, DAY(TODAY() ) )
which shall work in SharePoint.
More samples Examples of common formulas in lists - Microsoft Support
- JoMoWasHereAug 22, 2023Copper ContributorThank you!! Got it to work!
- peiyezhuAug 22, 2023Bronze Contributorlike SharePoint likes/supports EDATE. ?
Excel from o365 windows desktop version?- JoMoWasHereAug 22, 2023Copper ContributorSorry, SharePoint does not support/like EDATE.
Excel Windows Desktop version does though.
My fault for not clarifying in the original post!
- JoMoWasHereAug 21, 2023Copper ContributorI love you and appreciate you!! Dang I've been working on this for a few days going over random formulas.
THANK YOU!!!!!!