Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
what is the expression in enterprise for a filter pane to display mmm-yy from a date time stamp?
This only displays month need it to include year Month(ProcessedOn)
May be this:
Date(MonthStart(ProcessedOn), 'MMM-YY')
Date(ProcessedOn,'MMM-YY')
or to not only format but change the numerical value to month start:
Date(Monthstart(ProcessedOn),'MMM-YY')