Hello,
I have a Column K named 'SHIPDATE' and the first date starts in K2 and is in the format 9/27/2017 0:00.
I need to make three separate columns from K2 named MONTH|DAY|YEAR
So for Day I used this formula:
=DAY([@SHIPDATE])
But the output for Day is
1/27/1900 0:00
I'm...