Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need single filter for having previous and current month data. Iam able to use the below filter on QV but it does not work in nprinting filter.
='>=' & Date(MonthStart(Today(), -1)) & '<=' & Date(MonthEnd(Today()))
try this :
='>=' & Date(MonthStart(addmonths(Today(), -1))) & '<=' & Date(MonthEnd(Today()))