I've tinkered with the code on some reports to make them give me the information I want and solved a few problems with help from the people on this board. Well, I've created a monster! My boss is now asking me to make some other changes and I'm at a loss.
Report: Sales Tax Analysis
Request: She would like the report to automaticly run for the previous month.
Current Code:
Begin Filter
FieldName = "#ListSalesTaxAnalysis.[Date]"
FilterOp = reportfilteropBetween
FilterLoLim = "8/1/2010"
FilterHilim = "8/31/2010"
FilterNegated = False
FilterConnector = reportfilterbooleanconAND
End Filter
The following things didn't work:
Begin Filter
FieldName = "#ListSalesTaxAnalysis.[Date]"
FilterOp = reportfilteropBetween
FilterLoLim = "Last Month"
FilterHilim = "Last Month"
FilterNegated = False
FilterConnector = reportfilterbooleanconAND
End Filter
OR
Begin Filter
FieldName = "#ListSalesTaxAnalysis.[Date]"
FilterOp = reportfilteropBetween
FilterRange = "Last Month"
FilterNegated = False
FilterConnector = reportfilterbooleanconAND
End Filter
OR
Begin Filter
FieldName = "#ListSalesTaxAnalysis.[Date]"
FilterRange = "Last Month"
FilterNegated = False
FilterConnector = reportfilterbooleanconAND
End Filter
*This post is locked for comments