You can use new function Keep value
It transfers
Customer Id Order Amount
1 1 56
Null or empty string 2 456
Null or empty string 3 45
Into
Customer Id Order Amount
1 1 56
1 2 456
1 3 45
More complex data transformation example
Date: 01/01/2009
Customer Id Order Amount
1 1 56
1 2 456
1 3 45
You can do the following
USE Sequence to calculate record number
Connect Sequence and field to Calculation
and use this script
begin
if [F001]=1 then
Result := '[F002]'
else
Result := '';
end;
+ connect keep value to the calculation
Hope this helps
Mike