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

Binary Load

Hi Everyone!

I have a query that, we can be able to restrict the data on  a binary load.

Ex:

A.qvw having the data

load * inline [

Year, Sales

2000, 123

2001, 234

2002, 345

2003, 456

2004, 567

2005, 678

2006, 789

2007, 891

2008, 112

2009, 121

2010, 145

];

If I am using the A.qvw into B.qvw (Binary <path> A.qvw) can I restrict the data so that can able to fetch the data only for the year 2006 or else 2006 or above?

5 Replies
agigliotti
Partner - Champion
Partner - Champion

i guess you can't with only a binary load.
Somasundaram
Creator III
Creator III

Hi,

Not able to restrict data while binary load. after binary load you can restrict using resident load.

Binary <path> a.qvw;

Load *

resident <tablename> where <field> ='2006';

 


-Somasundaram

If this resolves your Query please like and accept this as an answer.
parvez933
Creator
Creator
Author

Hi Somasundaram,

Yes, after loading the data from binary, we can restrict the data in the chart or in the script.

Is there is any possibility to restrict from the binary load.
juliensaintmaxent3113
Luminary Alumni
Luminary Alumni

hello,

you have two choices:

load after the binary with where condition or in the app A make where condition

Bye

parvez933
Creator
Creator
Author

Hey Jsaint,

Thank you for your response!