Experts, I have a report that groups Dates as in below. But now I want to change this based on the min of ([tblTransactions].[LatestShipDate]), tblLetterOfCredit].[FinalMaturity], tblLetterOfCredit].[InitialExpireDate] and to keep the formatting as "mmmm yyyy".
How to do this? thank you
Here is what I am using now but want to make the change as stated:
Dates: IIf(IsNull([tblTransactions].[LatestShipDate]),Format([tblLetterOfCredit].[FinalMaturity],"mmmm yyyy"),Format([tblTransactions.LatestShipDate],"mmmm yyyy"))
ASKER