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
shaoboji
Frequent Visitor

How to get the first or last value in a column?

Hi everyone, need a little help here:

In a table like this:

date        rank

1/1/2000    2

1/2/2000    1

1/3/2000    3

1/4/2000    2

 

I want to get the first or last value of rank, so both are 2 in this case. But with FirstNonBlank or LastNonBlank, the result is always in asc or desc order, getting 1 and 3. Any ideas? Thanks.

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@shaoboji  - You can creat a Measure like this:

Find First = 
var __EarliestDate = MIN(YourTable[Date])
return CALCULATE(MIN(YourTable[Rank]), YourTable[Date] = __EarliestDate )

Hope this helps,

Nathan

 

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

@shaoboji  - You can creat a Measure like this:

Find First = 
var __EarliestDate = MIN(YourTable[Date])
return CALCULATE(MIN(YourTable[Rank]), YourTable[Date] = __EarliestDate )

Hope this helps,

Nathan

 

@Anonymous 

 

I was curious. Why are you using "__" in front of the VAR name?

Anonymous
Not applicable

@DouweMeer  - I don't always use it, but it's a way to easily identify variables when reading the code. Notably, visuals use this format for variables in their behind-the-scenes DAX. It also offers some protection from re-using a keyword or existing column/measure/table name.

@Anonymous  Fair enough. Thought it might had something to do with standard practice in other languages. 

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.