Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I build a matrix where one of the column is a measure that take the biggest number between data coming from 2 differents sources :
Inscription = SWITCH(
TRUE(),
SUM('Prod Asso Inscrites OnLine'[Inscription Prod]) > SUM('GA Asso Inscrites OnLine'[Associations Inscrites]), SUM('Prod Asso Inscrites OnLine'[Inscription Prod]),
SUM('Prod Asso Inscrites OnLine'[Inscription Prod]) <= SUM('GA Asso Inscrites OnLine'[Associations Inscrites]), SUM('GA Asso Inscrites OnLine'[Associations Inscrites])
)But as you can see the tota show me 3572 instead of 3813.
Solved! Go to Solution.
@Anonymous
Try this MEASURE which references your original measure
Idea is to sum up the MEASURE "Inscription" for all "Canaux Online" values
iNSCRIPTION2 =
IF (
HASONEFILTER ( TableName[Canaux Online] ),
[Inscription],
SUMX ( VALUES ( TableName[Canaux Online] ), [Inscription] )
)
@Anonymous
Try this MEASURE which references your original measure
Idea is to sum up the MEASURE "Inscription" for all "Canaux Online" values
iNSCRIPTION2 =
IF (
HASONEFILTER ( TableName[Canaux Online] ),
[Inscription],
SUMX ( VALUES ( TableName[Canaux Online] ), [Inscription] )
)
@Anonymous
Just Add this MEASURE in the MAtrix's Values section.
Replace TableName with your actual TableName
HI @Anonymous ,
Actually, you not need to use switch function. SWITCH function not suitable to handle summarize records, you can use max function to package these calculations to return the bigger one.
Inscription =
MAX (
SUM ( 'Prod Asso Inscrites OnLine'[Inscription Prod] ),
SUM ( 'GA Asso Inscrites OnLine'[Associations Inscrites] )
)
Regards,
Xiaoxin Sheng
Thank you @Anonymous but I changed the measure ans still have the same result for total.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 50 | |
| 43 |