I am using addition to calculate 2 columns into a calculated column "Total 3".
Example:
Total 1 | Total 2 | Total 3
1 | 2 | 3
2 | 2 | 4
1 | |
4 | 1 | 5
Problem is I don't have data in every row. So as you can see the third one here results nothing instead of 1. 1 + "blank" is still 1.
But it returns an empty field.
Any solution to this in ETL?