I have a two date fields called DateFrom and DateTo.
In the header I need it in mm/yyyy form like 02/2009 03/2009.
I tried creating a formula
ToText(datepart(“m”,{?@DateFrom}),0) + “/” + ToText(datepart(“yyyy”,{?@DateFrom}),0)
+" - "+ToText(datepart(“m”,{?@Dateto}),0) + “/” + ToText(datepart(“yyyy”,{?@Dateto}),0)
But this gives me 02/2,009 03/2,009.