Forum Discussion
pmancevski
3 years agoNew Contributor III
Hi @sathishmadavali,
After CSV parser add mapper and with ternary operator check/map if the field is empty. If it is then add null if not pass the field.
Example:
$fieldName == “” ? null : $fieldName
BR,
Pero M.