Hi all
I wonder if I'm able to do so....
I have two identical datawindow, dw_1 and dw_2. Both shows different columns, but select statement is the same.
dw_1 only have one row, multiple row is not allowed here, but for dw_2, multiple row is allowed.
So what I'm trying to achieve is:
- When I modify anything in dw_1, I want it to copy all values into dw_2, but do not insert row.
For example:
dw_1 = 1 row only
dw_2 = 3 rows
When I modify column A in dw_1, I want to update dw_2 column A value also.
I tried to use rowsCopy, but it will insert one row
Thank you
Instead of Rowscopy you can think of using exportjson and importjsonbykey also.
Rowscopy might fail even if the order of the column gets re-located, but importJSONbyKey will succeed.
Yes, you're right, when using rowsCopy, it will insert one row into dw_2.