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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
kulasekhar
Creator
Creator

pivot table two dimensions see in single line.

Hi All,

In pivot table i have two dimensions like bellow.Please find the attached sampule data XL.

asdf.JPG

I want see one  ITEM NUMBER(61195643-54) one module Like bellow images.

asdf2.JPG         asdf3.JPG

I Want see any MODULE in one row. like above any one.

Thanks

Sekhar.

5 Replies
sunny_talwar

You want this?

Capture.PNG

Script used

Table:

LOAD [ITEM NUMBER],

     MODULE,

     [USED ONLY IN GREY SPECS?],

     [SPECIFICATION NUMBER]

FROM

[..\..\..\Downloads\MODULE.xls]

(biff, embedded labels, table is Sheet1$);

FinalTable:

LOAD *,

  If([ITEM NUMBER] = Previous([ITEM NUMBER]), RangeSum(Peek('SNo'), 1), 1) as SNo

Resident Table

Order By [ITEM NUMBER];

DROP Table Table;

Pivot table

Dimensions

ITEM NUMBER

SNo

Expression

MODULE

kulasekhar
Creator
Creator
Author

Hi sunny,

I want bellow  two rows (ITEM NUMBER AND 1). No need third row(2).

MODULE.JPG

Thanks

Sekhar.

sunny_talwar

So may be just this

Capture.PNG

kulasekhar
Creator
Creator
Author

Hi Sunny.

It's working belloe both Expresstions but showing Null values.

1)Expresstions: =Only({<SNo = {1}>} MODULE)

2)Expresstions: =MaxString(MODULE)

Thanks

Sekhar.

sunny_talwar

They are working but showing Null? What does that mean?