Dear Community,
There is some input setup that makes an automatic change in my date that cannot be changed with DateTime or formula.
The raw input is this:
18/12/2018
But when the Alteryx read the input is has the value of V_String but with this:
2018-12-18
I would like to have the numbers look like this:
18-12-2018
I thought it is an easy step, but turned out that is not. I tried the following:
- set the format to date with Select, and then formula DateTimeFormat with parameters dd-MM-yyyy - result is (Null)
Logically this means that it is not in real date format so I tried to convert first:
- use DateTime to create Date from string with parameters FROM: yyyy-mm-dd - (Null)
It not worked so I used the original format in my raw file:
- use DateTime to create Date from string with parameters FROM: dd/MM/yyyy - (Null)
Now I don't understand why it just not able to change it.
Could you please help me?
Thank you:
Attila