How to get last day Of Mounth in report?

i need value in report get last day of Mounth ?

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

@pgustavo

Thank you very much

1 Like