Create NLOOKUP () function to find n'th occurrence of lookup value (something even XLOOKUP cant do)

Поділитися
Вставка
  • Опубліковано 15 гру 2024

КОМЕНТАРІ • 9

  • @AswinAGMFA
    @AswinAGMFA Рік тому +2

    Fantastic Video

  • @VINAY_DEVADIGA
    @VINAY_DEVADIGA 9 місяців тому +3

    You can achieve the same result by using a very short Syntax as below and then if needed, convert that into a lambda function with 4 input parameters as defined below the formula
    =INDEX(FILTER($B$3:$B$16,$A$3:$A$16=D3),E3)
    $B$3:$B$16 is the item names; in your case--> fruit names
    $A$3:$A$16 is the dates
    D3 is the individual item you want to evaluate
    E3 is the Nth value you wish to obtain
    In order to avoid errors on selection of the Nth value you can use the formula
    =SEQUENCE(COUNTIF($A$3:$A$16,D3))
    and reference the above to a Drop Down list
    Once done, user can only select the numbers from the drop down

  • @kawsarahmad
    @kawsarahmad Рік тому +1

    Excellent video! Very well explained, thank you!

  • @aneilpope
    @aneilpope Рік тому +1

    Amazing!

  • @joycenaicker6251
    @joycenaicker6251 Рік тому +1

    Thank you.