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 Ben โ€ข Latest โ€ข Was this helpful? Please consider buying me a coffee. Cheers!