Hi everyone!
Do I have any way to split the day, month and year from a date into a singles numbers? for example… 09/16/2022 ==> 0+9=9 1+6=7 2+0+2+2=6
Thanks
JJ
Hi everyone!
Do I have any way to split the day, month and year from a date into a singles numbers? for example… 09/16/2022 ==> 0+9=9 1+6=7 2+0+2+2=6
Thanks
JJ
You could do that with the math column.
i.e. year(date) where you replace the date with your date.
month(date)
weeknum(date)
day(date)
You could try something like this for the specific day.
year(date)*10000+month(date)*100+day(date)
Put that into the configuration of a math column and replace date with your date.
Here’s what I would do:
,
and this should split the template column into separate digits.Repeat for each part of the date:
day(date)
year(date)