I have a date value stored as number '44567' that i would like to convert to date format using javascript
var datexx = new Date(44567).toDate("dd/mm/YYYY");
console.log('date: ', datexx);
on excel file this value is equal to 06/01/2022
thank you