I have a report where I want to have two charts. So far I have one chart and a separate table showing stats for a specified time period. (I have a separate report form where dates are entered Normally monthly or quarterly). My first query in the datefield has this
Between [Forms]![frmReports]![txtStartDate] And [Forms]![frmReports]![txtEndDate] All works well
So now to my second chart, I want to display the last 12 months from my [textEndDate] and I want the months as Jan Feb etc and have tried quite a few combinations but i've reached my bestby date
my last attempt was
Between [Forms]![frmReports]!DateAdd("mmm",-12,[txtEndDate])And [Forms]![frmReports]![txtEndDate]
help please