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! Learn more
Olá, tenho a Matriz abaixo com as seguintes métricas
Solved! Go to Solution.
Hi @Anonymous
Thanks for reaching out to us.
The first 2 measures are working fine, right? So for TesteCad4, you can try the measure below. (As there is no sample data to test, not sure if it works, just try it.)
create the measure, and put it into table visual,
testTesteCad4 =
IF (
HASONEFILTER ( LotDailyCadence[LotNumber] ),
[TesteCad4],
SUMX (
FILTER (
LotDailyCadence,
LotDailyCadence[Date] >= DataInicial
&& LotDailyCadence[Date] <= DataFinal
&& LotDailyCadence[LotNumber] IN _Lote
),
[TesteCad4]
)
)
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
this worked, thanks a lot for the help
Hi @Anonymous
Thanks for reaching out to us.
The first 2 measures are working fine, right? So for TesteCad4, you can try the measure below. (As there is no sample data to test, not sure if it works, just try it.)
create the measure, and put it into table visual,
testTesteCad4 =
IF (
HASONEFILTER ( LotDailyCadence[LotNumber] ),
[TesteCad4],
SUMX (
FILTER (
LotDailyCadence,
LotDailyCadence[Date] >= DataInicial
&& LotDailyCadence[Date] <= DataFinal
&& LotDailyCadence[LotNumber] IN _Lote
),
[TesteCad4]
)
)
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
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.