AmberPollard
8 years agoQrew Assistant Captain
Add Year (if Not Current) to MM/DD
How would I change the formula to display the year IF it is not the current year?
var text MM = Right(ToText(Month([Date])),2);
var text DD = Left(ToText(Day([Date])),2);
If(IsNull([Date]), "",
$MM &"/"& $DD)
Also, if records are sorted highest to lowest by the (new) field, will higher (more recent) dates appear ABOVE the dates for the previous years?
I could sort by the [Date] field, but I concatenate the field above with another with some text details.
Thanks!
var text MM = Right(ToText(Month([Date])),2);
var text DD = Left(ToText(Day([Date])),2);
If(IsNull([Date]), "",
$MM &"/"& $DD)
Also, if records are sorted highest to lowest by the (new) field, will higher (more recent) dates appear ABOVE the dates for the previous years?
I could sort by the [Date] field, but I concatenate the field above with another with some text details.
Thanks!