Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear.
I need to list the departments in order.
The organization order was defined by a mapping table.
Organizations that are not in the organization mapping table have string values.
It was grouped into Dual values.
*** sample data ****
Order_Map:
mapping Load *inline [ Dept, OrderDept_AB, 1Dept_AA, 2];
Sales_TEMP:LOAD *inline [ Dept, ValuesDept_A, 10000Dept_AA, 12000Dept_B, 10000Dept_AB, 13000Dept_C, 10000
];
Sales:
Load*,applymap('Order_Map',Dept ) as Order, dual(Dept, applymap('Order_Map',Dept )) as Order_1resident Sales_TEMP;
drop table Sales_TEMP;
**************************
when you export data as table formatting , the following occurs:
The Result :
How can I solve this problem?
Best Regard
hanna.choi