Hello,
I have a feature (Incorporation_Date) that, in ArcGIS pro, I set to format 'Month D, YYYY' like the other date columns in my dataset. There are only two map points with this feature, so I use the following expression:
if (IsEmpty($feature.Incorporation_Date)) {
return null;
}
else {"Incorporated on " + ($feature.Incorporation_Date) + " (" + $feature.Incorporation_Citation + ")"}
However, the expression returns the date formatted as YYYY-MM-DD 00:00:00. I attempted to add Text(DateOnly before) the feature to remove the time section, but would like to know how to re-format the date to Month D, YYYY.
Thank you!