Forum Discussion
Cuto05
Apr 13, 2023Copper Contributor
Obtain a month column from only a day value
Hi, I have this issue. I'm working with a column that only has day numeric value. From 1-31 (January) and then it's start over from 1-28(February) until the end of the year. To add complexity every d...
Patrick2788
Apr 14, 2023Silver Contributor
If it's what I think it is, you could use:
=LET(
dates, SEQUENCE(365, , DATE(2023, 1, 1)),
REDUCE("All Dates", dates, LAMBDA(a, v, VSTACK(a, EXPAND(v, 8, , v))))
)