Hello,
My input CSV data files have a Character column in the format of: "##.##.##".
"##" can be anything from 0 to 99.
The issue that I am having is that for most of these combinations, when I import the CSV using a basic "Open(filename)" command, the column converts it to a numeric date type which is not useful for me.
I have made patch fixes using Month/Day/Year column functions but I was interested in forcing the input to be a Character.
A colleague shared the following, which does exactly what I need for local CSV files.
The "Set Date Enable (0)" does exactly what I need.
dt = Multiple File Import(
<< Set Folder( csv_file_path ),
<< Set Name Filter( csv_filename ),
<< Set Date Enable( 0 )
) << Import Data;
My current issue is that I also have CSV files that I download from a URL (not a local file) and I am not sure how to configure the above JSL code to get that to work.
URL CSV syntax: "http://xxx.yyy.com:###/api/csv.php?p=#####"
Any help is much appreciated.