Sorry, no - but that's because LY-YTD changes every day. You have to calculate it doing your own summary (which is probably why ReportMaster was using a Read Back file. The formular for Last Year-YTD Invoices, if using the OrderEntry History file would be:

Code:
IF(
  AND(
    {Inv Date}>= DATE(YEAR(TODAY())-1,01,01),
    {Inv Date}<= DATE(YEAR(TODAY())-1,MONTH(TODAY()),DAY(TODAY()))
    ),
  {Total Dollar Value} , 
  0)


Then you'd need to summarize the view with this column totalled.

Does this help?
_________________________
Andrew Bates