Forum Discussion
afoucaul
Feb 02, 2023Copper Contributor
Bonjour, souhait de faire une fonction SI
Bonjour Je suis sur un tableau fournisseur. Je souhaiterais ajouter une colonne ou dedans il y aurait deux choix : "oui" et "non". Le "oui" serait Si un fournisseur (colonne C) intervient ...
PeterBartholomew1
Feb 02, 2023Silver Contributor
365 seulement
- afoucaulFeb 03, 2023Copper Contributor
The Excel is like that so when i write the formula; Neither the Supplier; neither Oui or Non works
- PeterBartholomew1Feb 03, 2023Silver Contributor
Hopefully this is a step in the right direction.
= IF(MAP(Fournisseur, CategoryCountλ)>=3, "Oui", "Non") CategoryCountλ = COUNTA(UNIQUE(FILTER(Category, Fournisseur = s)))- peiyezhuFeb 06, 2023Bronze Contributoralternatively by sql:
select Fournisseur,(select iif(count(distinct Category)>2,'Oui','Non') from count_distinct_category_of_each_suppliers b where a.Fournisseur=b.Fournisseur) Analyse,Category
from count_distinct_category_of_each_suppliers a;