i need value in report get last day of Mounth ?
How to get last day Of Mounth in report?
Try the following expression:
Day(DateAdd("m",1,DateSerial(Year(Now), Month(Now),1))-1)
If you want to print this value, paste it on the DataField property with the ‘=’ sign in front.
1 Like