Forum Discussion
Skeer
4 years agoNeophyte
1 hour ago, Stuart Weenig said:They 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)
You've obviously been working with those for a while :)/emoticons/smile@2x.png 2x" title=":)" width="20" />
So, logically that makes no sense to me what so ever...
Related Content
- 6 months ago
- 9 months ago
- 2 years agoAnonymous