Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
vikasmahajan

How to load fields dashboard wise Y/N

Dear All,

I have fields like following structure in excel sheet , depending on flag "Y"  I want to load the fields dashboard wise.

how to achieve the same ?

  

FieldNameDashboard1Dashboard2Dashboard3Dashboard4
Field1,YYYN
Field2,YYYY
Field3,YNYY
Field4,YYNY
Field5,NYYY

Attached excel fields.

Thanks in Adv

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
1 Solution

Accepted Solutions
Anonymous
Not applicable

Or this to only select where the dashboard value is 'Y'



Temp:
CrossTable(DashboardNo,Indicator,1)
LOAD * INLINE [
FieldName, Dashboard1, Dashboard2, Dashboard3, Dashboard4
Field1, Y, Y, Y, N
Field2, Y, Y, Y, Y
Field3, Y, N, Y, Y
Field4, Y, Y, N, Y
Field5, N, Y, Y, Y
]
;

Data:
NoConcatenate
Load * Resident Temp where match(Indicator,'Y');

Drop table Temp;

View solution in original post

2 Replies
Anonymous
Not applicable

See if this helps?


Data:
CrossTable(DashboardNo,Field,1)
LOAD * INLINE [
FieldName, Dashboard1, Dashboard2, Dashboard3, Dashboard4
Field1, Y, Y, Y, N
Field2, Y, Y, Y, Y
Field3, Y, N, Y, Y
Field4, Y, Y, N, Y
Field5, N, Y, Y, Y
]
;

Not sure what you mean by dashboardwise??

Anonymous
Not applicable

Or this to only select where the dashboard value is 'Y'



Temp:
CrossTable(DashboardNo,Indicator,1)
LOAD * INLINE [
FieldName, Dashboard1, Dashboard2, Dashboard3, Dashboard4
Field1, Y, Y, Y, N
Field2, Y, Y, Y, Y
Field3, Y, N, Y, Y
Field4, Y, Y, N, Y
Field5, N, Y, Y, Y
]
;

Data:
NoConcatenate
Load * Resident Temp where match(Indicator,'Y');

Drop table Temp;