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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Pricey79
Helper V
Helper V

Multiple record Measure help please

Hello , I was hoping someone could help please.

 

I have a three columns : ID, State and Part.  I need to create a fourth column that relies on the previous three collumns returning specific crtieria. There are 3 parts to each ID.

 

I need column 4 to say IF ID Part A, Part B and Part C say READY in the State Column, then say Ready in Column 4 , if not, then Not Ready.  An ID cannot be READY State untill Parts A , B and C are ready. 
Could anyone help with this please? Example below shows ID 1111 would be Not Ready in column 4, because Part C isnt Ready

 

Thank you for any help 

 

Pricey79_0-1677755595981.png

 

 

 

 

 

1 ACCEPTED SOLUTION
Aburar_123
Solution Supplier
Solution Supplier

Hi @Pricey79 ,

 

Please try with this formula

 

Aburar_123_0-1677766791962.png

 

View solution in original post

4 REPLIES 4
Aburar_123
Solution Supplier
Solution Supplier

Hi @Pricey79 ,

 

Please try with this formula

 

Aburar_123_0-1677766791962.png

 

@Aburar_123 that seems to work! Thank you so much. I havent used the Earlier function before. Thank you

amitchandak
Super User
Super User

@Pricey79 , Create a new column like

 

new column =
var _count = countX(filter(Table, Table[ID] = earlier(Table[ID]) && Table[Satus] ="Not Ready"), Table[ID])
return
if(not(Isblank(_count)) , "Not Ready" , "Ready")

 

 

Earlier, I should have known Earlier: https://www.youtube.com/watch?v=cN8AO3_vmlY&t=17820s

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@amitchandak  Thank you for your reply, much appreciated.

However, it doesnt seem to work properly. 

I have a record where State is Ready for both, but the new column is showing Not Ready?

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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