Hi , i have table where the name are in two languages and there is another field/ column (sn_grp) with some values calculated only for one language so now i want to calculate that value for other language where the name and ID's are same .
Page 1 / 1
Hi
You could use a Sorter to sort by ID (ascending) and sn_grp (descending). Then use an AttributeCreator to replace NULL values with the value from the preceeding feature:
For the value of sn_grp, use a conditional to test if a value is already present (do nothing) or if it is undefined (use the value from the preceeding feature):
David
Hi
You could use a Sorter to sort by ID (ascending) and sn_grp (descending). Then use an AttributeCreator to replace NULL values with the value from the preceeding feature:
For the value of sn_grp, use a conditional to test if a value is already present (do nothing) or if it is undefined (use the value from the preceeding feature):
David
Thank you david ..it worked :-)