Support Formation DAX
Bonnes pratiques

icon picker
Titre dynamique


TitreParPays =
IF(
ISFILTERED(Customer[Country-Region]),
IF(
HASONEVALUE(Customer[Country-Region]),
VALUES(Customer[Country-Region]),
CONCATENATEX(
Customer,
Customer[Country-Region],
",",
Customer[Country-Region],
ASC
)
),
"Tous les pays"
)



Affiche les 5 premiers produits sélectionnés, puis un symbole “+” quand on dépasse 5 :
info

Exemple

gd.solutions_TitreDynamiqueSélectionTop5.pbix
68.9 kB

Products Selected =
IF(
NOT(
ISFILTERED(Vente[Produit])
)
,"All",
"Produits " & CONCATENATEX(
TOPN(5, ALLSELECTED(Vente[Produit])
),
Vente[Produit],
", "
)
& IF(
COUNTROWS(ALLSELECTED(Vente[Produit]))>5,
"+",
""
)
)

Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.