Converting Date from String format (d/m/y) to Numeric value (ddMonyyyy)
I have a String column with date values in format "d/m/y",however when converting via jsl using the following script:Column( dt, "Date" ) << data type( numeric );
Column( dt, "Date" ) << Set modeling type( "Continuous" );
Column( dt, "Date" ) << Format( "ddMonyyyy" );
it returns it in the correct "ddMonyyyy" format, but it has swapped month with day so instead of seeing 05May2018 it shows 05Sep2018...