I have a 2 line code but the date comes out as the following
15/January/2022
but I need it as either
15.01.2022
15012022
Is there a way of doing that?
FirstDay=DateSerial(Year(Date),(Month(Date)- 1),1)
LastDay=DateSerial(Year(Date),Month(Date),0)