I am merging data from two finance systems, where I have different sign of numbers for some of the accounts in the chart of accounts (income accounts appear with negative values in one, and positive in the other). Since I want to merge the datasets I need to negate one set of these numbers, but only for some rows.
What is the simplest way of doing this using EDT? My thinking so far is to split based on account number (eg accounts < 4000) into a separate dataset using filter, multiply cells with -1, and then merge back. Better ideas? I need to do this for 8 periods (8 set of columns).


