Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Lori1219
Contributor
Contributor

Display column names on left, not horizontal

Want the field labels to appear on left, instead of horizontal - it's just text info extracted from a database that Qlik can access

Statement Details Process Mfg. Line Type
XXXXX XXXXX XXXX XXXX XXXX
XXXXX XXXXX XXXX XXXX XXXX
XXXXX XXXXX XXXX XXXX XXXX
XXXXX XXXXX XXXX XXXX XXXX
         
want this column name to left, not horizontal 
Statement XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Details XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Process XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Mfg. Line XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Type XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Labels (1)
1 Reply
justISO
Specialist
Specialist

Maybe this can be a part of something:

test_data:
LOAD * inline [
Statement, Details , Process , Mfg. Line, Type
1, 2, 3 , 4, 5,
6 , 7 , 8, 9 , 10];


CrossTable(Names, Values)
main:
load
RowNo() as firstcol,
*
resident test_data
;

drop field firstcol;
drop table test_data;