Forum Discussion
3 Replies
- sathishmadavaliNew Contributor II
plese help me on that
- pmancevskiNew 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 : $fieldNameBR,
Pero M. - sathishmadavaliNew Contributor II
Thanks @pmancevski , its working fine.