Weekly & Monthly Review

Weekly & Monthly Review

For
stevenau281
From
Reddit
Status
Updating
Formulas
Share

Review V1

Monthly appears on the first Monday of each month, Weekly appears every Monday.
if(date(prop("Date")) <= 7 and day(prop("Date")) == 1, "🗓 Monthly ", "") + if(day(prop("Date")) == 1, "🗒 Weekly", "")

Review V2

Monthly appears on the first day of each month, Weekly appears every Monday.
if(date(prop("Date")) == 1, "🗓 Monthly ", "") + if(day(prop("Date")) == 1, "🗒 Weekly", "")

Review V3

Monthly takes precedence when both Monthly and Weekly fall on the same day.
if(date(prop("Date")) == 1, "🗓 Monthly", if(day(prop("Date")) == 1, "🗒 Weekly", ""))
 
By Ben  •  Latest  •  Was this helpful? Please consider buying me a coffee. Cheers!By Ben  •  Latest  •  Was this helpful? Please consider buying me a coffee. Cheers!
By BenLatest • Was this helpful? Please consider buying me a coffee. Cheers!