Forum Discussion

DauletKali's avatar
DauletKali
Icon for Helper I rankHelper I
5 years ago
Solved

Double VLOOKUP

 

Hi guys, need your help in solving my problem

I need that function(s) which will return the number(3) if the Date(1) will be equal to TODAY() and the item (2) ="Селитра аммиачная

  • DauletKali 

     

    If I understand this correctly, you want the function to return [3] if [1] is today and [2] is "Селитра аммиачная"?

     

    I think you would need an IF function and not a lookup.

     

    Function = IF(AND([1] = Today(),[2]="Селитра аммиачная"),[3],"")

2 Replies

  • DauletKali 

     

    If I understand this correctly, you want the function to return [3] if [1] is today and [2] is "Селитра аммиачная"?

     

    I think you would need an IF function and not a lookup.

     

    Function = IF(AND([1] = Today(),[2]="Селитра аммиачная"),[3],"")

  • v-easonf-msft's avatar
    v-easonf-msft
    Icon for Community Support rankCommunity Support

    HI, DauletKali 

    As mentioned by darentengmfs ,you need to create a calculated column as below:

    Function = IF(AND(column[1] = Today(),column[2]="Селитра аммиачная"),column[3],"")

    Could you please tell me whether darentengmfs  formula works for you?
    If yes, please  accept his answer as solution. You also could share your own solution here. For now, there is no content of description in the thread. If you still need help, please share more details to us.

     

    Best Regards,
    Community Support Team _ Eason