Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to link the data ???

Hi all

I want to link "Month" with "Period" . Month field values are Jan, Feb, Mar….Dec.

If I want to click P1 that should display Oct, P2 - Nov, P3 - Dec… P12 - Sep

LOAD Month;

FROM Total;

Period:

LOAD * INLINE [

Period

P1

P2

P3

P4

P5

P6

P7

P8

P9

P10

P11

P12

;

How can I do this ???...can anyone help.

Thanks

1 Solution

Accepted Solutions
Not applicable
Author

Try this

Period:

LOAD * INLINE [

Period,Month

P1,Oct

P2,Nov

P3,Dec

P4;jan

P5,Feb

P6,Mar

P7,Apr

P8,May

P9,Jun

P10,Jul

P11,Aug

P12,Sep

;

Anders

View solution in original post

3 Replies
Not applicable
Author

Try this

Period:

LOAD * INLINE [

Period,Month

P1,Oct

P2,Nov

P3,Dec

P4;jan

P5,Feb

P6,Mar

P7,Apr

P8,May

P9,Jun

P10,Jul

P11,Aug

P12,Sep

;

Anders

martinpohl
Partner - Master
Partner - Master

Hi,

expand your inline tab

Period, Month

P1, Oct

P2, Nov

P3, Dec

and so on.

Regards

Not applicable
Author

Working fine...Many thanks for all your replies !!