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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

conition if ,boucle where .

Hello,

I created a view, this was Last chargée.Mais Where I want to use the loop.

example: where column_name = 'TEST' and 'TEST1';

 

do I know my loop or placed after the selection.

3 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

A wild guess since I don't understand what you're asking:

TableA:

Load *

From mysourcetable

Where match(column_name, 'TEST','TEST1');

If that's not what you're looking for please explain in more detail or simply post your question in French so Google Translate can try to make English of it. Or perhaps post here instead: Groupe des Utilisateurs Francophones


talk is cheap, supply exceeds demand
Not applicable
Author

Bonjour ,

J'ai créé une vue, on la chargeant avec l'instruction Load,mais je voudrai utilisé la clause Where,on faisant .

load  nfac as 'numéro facture',

        sec as  section,

        cori as origine ,

seclect* from  vue_fact

where cori='Vvente'  and 'Vachat';

Merci e m'aider .

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Try:

load NFAC as 'invoice number'

         Dry as section

         cori as originally

seclect * from vue_fact

Where cori = 'Vvente' or cori = 'Vachat';


talk is cheap, supply exceeds demand