I’ve made some data manipulations with an analytic app thereby allowing end users the ability to select their fields of choice, apply a formulated % change to values, and to activate another chain app once they’re done.
However, I am unable to sort the raw data that comes out of it to follow the original raw data.
For example,
Columns in original dataset:
A | B | C | D | E
Columns in current output:
E | C | A | B | D
The Expected:
A | B | C | D | E
How may I do this? There can be some scenarios whereby some columns will be dropped after selections, so it can be like:
Columns in original dataset:
A | B | C | D | E
Columns in current output:
E | C | A | B
where D is dropped.
The Expected:
A | B | C | E
where D is skipped as it was dropped.
Thanks!