I have a code that places the current date on a table, but my VBA is placing it wrong
ActiveSheet.Range("K23").Value = Format(Now(), "dd mm yyyy")
But instead of placing 07/03/2023 is placing 03/07/2023, placing month first. What do I need to do for VBA to put as the first date, with days first.