Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi, all
When the IDs are the same, I want to get True if the sum of total is 1.
Solved! Go to Solution.
Hi @Anonymous ,
Try this:-
1EA =
var result = calculate(sum(table[total]),filter(all(table),table[itemlv2_lastlinkconsumerid] = earlier(table[itemlv2_lastlinkconsumerid])))
return if(result = 1,True(),false())
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @Anonymous , Follow the below steps:
Step 1:
Create a new column which says Count_Enteries.
Count_Entries = Calculate(Count([itemIv2_lastlinkconsumerID]), filter(tablename, itemIv2_lastlinkconsumerID = EARLIER(itemIv2_lastlinkconsumerID)))
Step 2:
Result = If(Count( Count_Entries)>1 && total=1 , "TRUE", "FALSE")
@Anonymous -> If this helps you, then please mark it as a solution and hit the thumbs up! Thanks.
Regards,
TruptiS
Hi @Anonymous ,
Try this:-
1EA =
var result = calculate(sum(table[total]),filter(all(table),table[itemlv2_lastlinkconsumerid] = earlier(table[itemlv2_lastlinkconsumerid])))
return if(result = 1,True(),false())
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin