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
Hello guys!
I'm trying to run these DAX but I'm facing the below issue.
Can you tell me how to solve this?
IF(
MAX(FATO_AR[AGE])="Backlog",
CALCULATE([Montante Real Por Data RNA/CNA],FILTER(FATO_AR,
MONTH(FATO_AR[NOVO_CORTE])=1),
IF(
MAX(FATO_AR[AGE])="Jan/19",
CALCULATE([Montante Real Por Data RNA/CNA],FILTER(FATO_AR,
MONTH(FATO_AR[NOVO_CORTE])=1)))))
Solved! Go to Solution.
Hi @Anonymous ,
Try the following measure:
ttt =
CALCULATE (
SWITCH (
MAX ( FATO_AR[AGE] ),
"Backlog", [Montante Real Por Data RNA/CNA],
"Jan/19", [Montante Real Por Data RNA/CNA]
),
FILTER ( FATO_AR, MONTH ( FATO_AR[NOVO_CORTE] ) = 1 )
)
If it doesn't work can you share a sample file?
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @Anonymous ,
Try the following measure:
ttt =
CALCULATE (
SWITCH (
MAX ( FATO_AR[AGE] ),
"Backlog", [Montante Real Por Data RNA/CNA],
"Jan/19", [Montante Real Por Data RNA/CNA]
),
FILTER ( FATO_AR, MONTH ( FATO_AR[NOVO_CORTE] ) = 1 )
)
If it doesn't work can you share a sample file?
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsIt worked perfectly! Thanks a lot!!
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.