Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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 |
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;