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
Hi friends!!
Simple case :
I have to join 2 mesures in one
Solved! Go to Solution.
@fbittencourt , Try using
DAX
CombinedMeasure =
VAR CurrentMonth = FORMAT(TODAY(), "YYYYMM")
VAR NextMonth = FORMAT(EDATE(TODAY(), 1), "YYYYMM")
RETURN
CALCULATE(
SUM(FAIT_INDICATEURS[Disponibilité Restante]),
FILTER(
FAIT_INDICATEURS,
FAIT_INDICATEURS[Disponibilité Restante] > 0 &&
(FAIT_INDICATEURS[MOIS] = CurrentMonth || FAIT_INDICATEURS[MOIS] = NextMonth)
)
)
Proud to be a Super User! |
|
@fbittencourt , Try using
DAX
CombinedMeasure =
VAR CurrentMonth = FORMAT(TODAY(), "YYYYMM")
VAR NextMonth = FORMAT(EDATE(TODAY(), 1), "YYYYMM")
RETURN
CALCULATE(
SUM(FAIT_INDICATEURS[Disponibilité Restante]),
FILTER(
FAIT_INDICATEURS,
FAIT_INDICATEURS[Disponibilité Restante] > 0 &&
(FAIT_INDICATEURS[MOIS] = CurrentMonth || FAIT_INDICATEURS[MOIS] = NextMonth)
)
)
Proud to be a Super User! |
|
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.