cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Discard empty rows while writing an excel file

ankita1212
New Contributor

I am trying to write an excel after comparing a database with salesforce data, I want to ignore the null rows after comparison is done in a mapper post Join. The data I am getting is perfect, only issue is with the way excel looks like.

image

Please advise how can these empty rows be ignored

2 REPLIES 2

igormicev
Contributor

Hi @ankita1212,

Simply, use the Filter snap. For example $column_name != null will filter the nulls for the column. You can combine multiple columns as well.

/Igor

Hi Igor,

Thanks you for the reply, the mistake I made was I had not included $column_name != โ€˜โ€™ along with $column_name != null. When I did it worked like a charm.