Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to show this in chart

Hi All,

  I am  having following requirement. In my 3 tables 9Customers,Service & Versions) I need to show this Customer performing this Service using this Version.

As I need to show data as it is , the aggr functions may not required

14 Replies
mato32188
Specialist
Specialist

Hi,

is there any association between tables you mentioned?

BR

M

ECG line chart is the most important visualization in your life.
Anonymous
Not applicable
Author

My Data will Look like Below

Customers:

CUST Service

A1       S1
A2     S2

A3      S1

Service:

Service  Version

  S1         1.0
   S2       1.0

Version:

Ver  Desc
  1.0 ALL

2.0    PVT

3.0    IT

srdheekonda
Contributor III
Contributor III

Table.png

Hi

Rename Ver column to Version  in Version table. So that it will create a Join with Version column in service table.

Find below the sample script and table join diagram. Once the join created you can filter the data accordingly.

Customers:
LOAD * INLINE
[CUST,Service
A1,S1
A2,S2
A3,S1];

Service:
LOAD * INLINE
[Service,Version
  S1,1.0
  S2,1.0];

Version:
LOAD * INLINE
[Version,Desc
1.0,ALL
2.0,PVT
3.0,IT];

I hope this helps

mato32188
Specialist
Specialist

Just rename your Ver field by Version and create table with your desirable fields.

ECG line chart is the most important visualization in your life.
Anonymous
Not applicable
Author

Hi Martin & Sampath,

Thanks for your help.   I am looking for, how to show the values in desired manner. I already completed my data modeling. Now I need to show above requirement in a graph. That is what I asking.

-Jay

mato32188
Specialist
Specialist

Create bar chart with customer, service dimensions and count Version. Is that what are you looking for?

ECG line chart is the most important visualization in your life.
Anonymous
Not applicable
Author

Hi Martin,

you are right, But thing is I don't want to Count anything. Because counting the version is not meaning full here.

mato32188
Specialist
Specialist

Attach your data sample, please. Would be better.

ECG line chart is the most important visualization in your life.
Anonymous
Not applicable
Author

Hi Martin,

  I cant attach data due to restrictions. All I need is your idea/Suggestions. So kindly let me know