Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
If I have one column in my table with some blank value and I want to feel that value with "NA".
How to do this?
Thanks
Sorry I have excel sheet.
Try like:
Load
If(Len(Trim(YourField))=0, 'NA', YourField) as YourField
From <>;
I want to do this activity using "Enable Transformation Step"
And I have multiple column like that.
If you are talking about Fill in the transformation step, it is actually filling with some other cell's value(from left/right/below/above); you can probably not fill with specific value.
Hi Tresesco,
then what is another option to do this.
Thanks
If they are really NULL, you could use NullAsValue, like:
NullAsValue *;
Set NullValue='NA';
Otherwise(if they are not nulls always but might have space or so), apart from doing similarly for all fields like showed above, you might handle them in the front end(replacing nulls or '-' with 'NA' in the chart) .