Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Delestia
Contributor II
Contributor II

Data Manager Field Sort Order Issues on Front End Sheet

Hello All,

I am trying to use the data manager to sync my tables and then sort my field by 'Open', 'Working', then 'Closed' however whenever I use the Order tab in the field manager it changes my values to '?' in the sheet views. Example load script below. I am loading in a dual field which has repeating values due to another business constraint. Example tables below.

SOURCE A 
Status_IDDisplay
1Open
2Open
3Working
4Working
5Closed
6Closed

 

SOURCE B  
ItemItem StatusUser ID
A14326
B24326
C34326
D44211
E54211
F64211
G14875
H24875
J34875

 

 

[tmp_Status]:
LOAD DUAL(Display, Status_ID)	AS [Item Status]
FROM SOURCE A;

[tmp_Main]:
LOAD *
FROM SOURCE B;
DROP TABLE [tmp_Status]

[Main]:
Load *, 
TEXT([Item Status]) AS [Status]
RESIDENT [tmp_Main];
DROP TABLE [tmp_Main];
DROP Field [Item Status];

 

 

0 Replies