Share
Explore

icon picker
Based on a Twitter post

Loud does not equal right


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


July 30 - August 6, 2024
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 ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.