How to get just the date in ETL on data reader

Hi,

I'm trying to find a difference between a date when and item is released and today on my data reader. I have the release date pulling from an API source. I'm using the =today() formula to return a day on an ETL but it's pulling back the date and time stamp like this:

Then when I subtract the two I get a really off number (the negative number at the bottom here.

How do I get the =today() to just equal to a date, no time?

Accepted Answer

  • Helmut Heimann
    Helmut Heimann Employee, Community Captain
    500 Comments 250 Likes Fourth Anniversary 25 Answers
    edited November 18 Answer ✓

    that's because the date function doesn't recognize 20241117 as a date and therefore can't derive year, month, and day from that…

    you need to explicitly put it that way ;-)

Answers