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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Customized straight table.

Hi Everyone,

I have a data table similar that is similar to

IDYearStatusTans TimeWait TimeCost
12015Arrived

123

5451
22015Arrived1251231
32015Arrived3242312
42015Arrived4351334
12015Served2342555
32015Served5241223

I want a Table in output similar to

Center2015
Arrived 4
Served2
% Served50%
Avg Tans Time254
Avg wait Time300
Cost per trans2.4

How can achieve this ?? do we have any object that can create customized rows like this??

1 Solution

Accepted Solutions
sunny_talwar

No dimension:

Capture.PNG

6 Expressions:

Capture.PNG

Exp1: =Count({<Status = {'Arrived'}>} Status)

Exp2: =Count({<Status = {'Served'}>} Status)

Exp3: =Served/Arrived

Exp4: =Avg([Tans Time])

Exp5: =Avg([Wait Time])

Exp6: =Avg(Cost)

Presentation tab -> Horizontal view checked:

Capture.PNG

View solution in original post

10 Replies
sunny_talwar

There are few ways to do this, one of this is using straight table and 6 expressions:

Capture.PNG

Not applicable
Author

Hi Sunny,

Its Failing to open?

sunny_talwar

Do you have a personal edition of QlikView?

Not applicable
Author

Yes, I have License but i think it has expired.

sunny_talwar

What is the error message that you are seeing?

Not applicable
Author

Saying i have reached maximum number of recoveries done using this Personal Edition.

Not applicable
Author

Can you Share a screenshot.??

sunny_talwar

No dimension:

Capture.PNG

6 Expressions:

Capture.PNG

Exp1: =Count({<Status = {'Arrived'}>} Status)

Exp2: =Count({<Status = {'Served'}>} Status)

Exp3: =Served/Arrived

Exp4: =Avg([Tans Time])

Exp5: =Avg([Wait Time])

Exp6: =Avg(Cost)

Presentation tab -> Horizontal view checked:

Capture.PNG

Not applicable
Author

Thanks Sunny