Entries

Entries

Last Day of Month

formatDate(dateAdd(prop("Date"), if(month(prop("Date")) == 1, if(year(prop("Date")) / 400 % 1 == 0 or year(prop("Date")) / 4 % 1 == 0 and year(prop("Date")) / 100 % 1 != 0, 29, 28), if(test(month(prop("Date")), "3|5|8|10"), 30, 31)) - date(prop("Date")), "days"), "dddd")

Last Date of Month

dateAdd(prop("Date"), if(month(prop("Date")) == 1, if(year(prop("Date")) / 400 % 1 == 0 or year(prop("Date")) / 4 % 1 == 0 and year(prop("Date")) / 100 % 1 != 0, 29, 28), if(test(month(prop("Date")), "3|5|8|10"), 30, 31)) - date(prop("Date")), "days")

Last Day of Current Month

formatDate(dateAdd(now(), if(month(now()) == 1, if(year(now()) / 400 % 1 == 0 or year(now()) / 4 % 1 == 0 and year(now()) / 100 % 1 != 0, 29, 28), if(test(month(now()), "3|5|8|10"), 30, 31)) - date(now()), "days"), "dddd")

Days in Month

if(month(prop("Date")) == 1, if(year(prop("Date")) / 400 % 1 == 0 or year(prop("Date")) / 4 % 1 == 0 and year(prop("Date")) / 100 % 1 != 0, 29, 28), if(test(month(prop("Date")), "3|5|8|10"), 30, 31))

Month Progress

round(date(prop("Date")) / if(month(prop("Date")) == 1, if(year(prop("Date")) / 400 % 1 == 0 or year(prop("Date")) / 4 % 1 == 0 and year(prop("Date")) / 100 % 1 != 0, 29, 28), if(test(month(prop("Date")), "3|5|8|10"), 30, 31)) * 1000) / 1000

Current Month Progress

round(date(now()) / if(month(now()) == 1, if(year(now()) / 400 % 1 == 0 or year(now()) / 4 % 1 == 0 and year(now()) / 100 % 1 != 0, 29, 28), if(test(month(now()), "3|5|8|10"), 30, 31)) * 1000) / 1000

<aside> <img src="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/1649d2f9-1b45-478a-86b4-341fbe27e06f/benny.png" alt="https://s3-us-west-2.amazonaws.com/secure.notion-static.com/1649d2f9-1b45-478a-86b4-341fbe27e06f/benny.png" width="40px" /> By BenLatest • Was this helpful? Please consider buying me a coffee. Cheers!

</aside>