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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
MauriceLudo
Creator II
Creator II

if match

Bonjour,

je voudrais supprimer les valeurs indiqués, voici l'expression

=If(Match([Produits/Services] , 'BIO') and

If(Match([Produits/Services] , 'Annuaires' ) and

If(Match([Produits/Services] , 'Développement') and

  If(Match([Produits/Services] , ' (produit)' ) and

  If(Match([Produits/Services] , ' (service)') and

  If(Match([Produits/Services] , 'Incident opérateur') , Null(), [Produits/Services]))))))

Merci

Maurice

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

=If(Match([Produits/Services], 'BIO', 'Annuaires' , 'Développement', ' (produit)' ,' (service)', 'Incident opérateur'), Null(), [Produits/Services])

Or if you want to remove data belongs to those [Produits/Services], you can use where clause..

Where Not Match([Produits/Services], 'BIO', 'Annuaires' , 'Développement', ' (produit)' ,' (service)', 'Incident opérateur'))

View solution in original post

1 Reply
MK_QSL
MVP
MVP

=If(Match([Produits/Services], 'BIO', 'Annuaires' , 'Développement', ' (produit)' ,' (service)', 'Incident opérateur'), Null(), [Produits/Services])

Or if you want to remove data belongs to those [Produits/Services], you can use where clause..

Where Not Match([Produits/Services], 'BIO', 'Annuaires' , 'Développement', ' (produit)' ,' (service)', 'Incident opérateur'))