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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
gaurav355
New Member

First non blank Value

I need to calculate First status of Id

ID             Status

12 ----------active

12----------updated2

12---------failed

22-------rejected

33--------updtaed1

33--------updated2

 

 

Result should be

12 ----------active

22-------rejected

33--------updtaed1

 

1 ACCEPTED SOLUTION
v-xiaotang
Community Support
Community Support

Hi @gaurav355 

Thanks for reaching out to us.

You can try this,

vxiaotang_0-1661508159147.png

or if there is date/index column in that table, you can  try

Measure = 
var _minIndex=CALCULATE(MIN('Table'[Index]),FILTER(ALLEXCEPT('Table','Table'[ID]),'Table'[Status]<>BLANK()))
return MAXX(FILTER(ALL('Table'),'Table'[Index]=_minIndex),[Status])

vxiaotang_1-1661508415110.png

 

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.

View solution in original post

2 REPLIES 2
v-xiaotang
Community Support
Community Support

Hi @gaurav355 

Thanks for reaching out to us.

You can try this,

vxiaotang_0-1661508159147.png

or if there is date/index column in that table, you can  try

Measure = 
var _minIndex=CALCULATE(MIN('Table'[Index]),FILTER(ALLEXCEPT('Table','Table'[ID]),'Table'[Status]<>BLANK()))
return MAXX(FILTER(ALL('Table'),'Table'[Index]=_minIndex),[Status])

vxiaotang_1-1661508415110.png

 

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.

gauthamboppana
Solution Specialist
Solution Specialist

@gaurav355   - Try the below and let me know if it works.

CALCULATE (
    FIRSTNONBLANK ( LookupTable[Status], TRUE () ),
    FILTER (
        LookupTable,
           LookupTable[ID] = TargetTable[ID] )
    )
)

 

Did I answer your question? Mark my post as a solution! If not, please feel free to ask me.

Also, I would ❤ Kudos if my solution helped.  It is a token of appreciation!

Thank you very much !

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors