```ValueError: Could not parse value '' for field ...
# troubleshooting
i
Copy code
ValueError: Could not parse value '' for field 'DATEPROFILEUPDATED'
Getting this error trying to load this particular column from my custom tap into Snowflake. In my tap its declared as a datetimetype. should i declare it as a string? will that allow the null to go through?
e
should i declare it as a string? will that allow the null to go through?
Yeah, that should work. The issue being the string
''
is neither null, nor a valid date-time string.
1