Forum Discussion
Anonymous
4 years agoThey are what they are. The support page linked should give you what you need.
For example, to get the day from the value 20221231, if the normal datapoint is called myvalue, you'd do this:
myvalue % 100
To get the month, you'd do:
floor(myvalue / 100) % 100
To get the year, you'd do:
floor(myvalue / 10000)
Related Content
- 6 months ago
- 9 months ago
- 2 years agoAnonymous