Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
=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'))
=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'))