Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
sunil-kumar5
Creator II
Creator II

Last Row column value

Hello All,

Please help to get a KPI value from below table, I want the last row value from value1 should reflect in KPI that is 383.

YearMonthvalue1 value2value3
2021May245275225
2021June412493418
2021July421382227
2021Aug383435349

 

Please advice

Labels (1)
  • llo

1 Solution

Accepted Solutions
Saravanan_Desingh

Try something like this,

=FirstSortedValue(value1,-Date(Date#(Month,'MMM')))

View solution in original post

3 Replies
Saravanan_Desingh

Try something like this,

=FirstSortedValue(value1,-Date(Date#(Month,'MMM')))
Saravanan_Desingh

Also try with Year,

=FirstSortedValue(value1,-Date#(Month&Year,'MMMYYYY'))
sunil-kumar5
Creator II
Creator II
Author

Hi Saran,

It is working absolutely fine Thanks for your help.