RECHERCHEV returns the same result on the following rows
marcogd3
Posted messages
9
Status
Member
-
dani -
dani -
I have a table with different data, when I perform a search I get the correct result using the following formula:
=IF(A19="","",VLOOKUP(A19,Article!$A$1:$BS$9505,13))
the result is correct, nothing to say.
As soon as I go to the next line in A20 where there is no search to be done
since the cell is empty by the condition =IF(A20="",""
the result displayed is the same as in the search line A19, as well as in the following lines until there is an effective search.
Thank you in advance for your help.
=IF(A19="","",VLOOKUP(A19,Article!$A$1:$BS$9505,13))
the result is correct, nothing to say.
As soon as I go to the next line in A20 where there is no search to be done
since the cell is empty by the condition =IF(A20="",""
the result displayed is the same as in the search line A19, as well as in the following lines until there is an effective search.
Thank you in advance for your help.
4 answers
-
Hello
I think the calculation mode of your sheet is manual, it needs to be set to automatic. Please check the following actions
-Click on the Office button in the top left
-Select Excel Options (at the bottom)
-Select "Formulas"
-In the "Calculation options" section, check "Automatic"
-OK -
Hello again,
Sorry, I made a mistake. I didn't see that your range covered columns A to BS (and not A to B).
Try with:
=IF(A19="","",IFERROR(VLOOKUP(A19,Article!$A$1:$BS$9505,13,FALSE),""))
Best regards. -
Hello,
Are you sure about your formula?
As written, the search is done in a 2-column table (A:B) and returns a value from the 13th column!
A+ -
Hello,
Your search formula is incomplete
=IF(A19="","",VLOOKUP(A19,Article!$A$1:$BS$9505,13,0))