Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Anonymous
Not applicable

how to calculate

Hi, all

 

When the IDs are the same, I want to get True if the sum of total is 1.

HUAM_1-1647253588869.png

 

 

1 ACCEPTED SOLUTION
Samarth_18
Community Champion
Community Champion

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

View solution in original post

2 REPLIES 2
truptis
Community Champion
Community Champion

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

Samarth_18
Community Champion
Community Champion

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

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors