Skip to content
Share
Explore

Based on a Twitter post

Loud does not equal right
the post I reflected upon →



Scott - the CodaGuy
Sequence(
date(2023,1,1),
EndOfMonth(Today(),12)
).ForEach(CurrentValue.ToDate()).
Foreach(
AddRow([Every Day],[Every Day].Day,CurrentValue))


Brian - Coda HQ Employee
Sequence(
_DP.Min(),
_DP.Max()).
ForEach(
AddRow(
[Every Day],
[Every Day].Day,
CurrentValue
))


Christiaan 2023
Sequence(
Date(2023,1,1),
Date(2023,12,31)).
ForEach(
AddRow(
[Every Day],
[Every Day].Day,
CurrentValue
))
A year as of today
Sequence(
Today(),
Date(
Today().Year(),
Today().Month() + 12,
Today().Day())
).ForEach(AddRow([Every Day],[Every Day].Day,CurrentValue))

The blog that explains a bit of back ground ⤵️


Delete rows
Every Day
Day
weekdayName
IsoWeekNumber
USAWeekNumber
There are no rows in this table

Want to print your doc?
This is not the way.
Try clicking the ··· in the right corner or using a keyboard shortcut (
CtrlP
) instead.