A
A
arsenaljek2021-09-08 05:29:11
Google Sheets
arsenaljek, 2021-09-08 05:29:11

How to get the maximum purchase price from another sheet?

Tell me, how to get the maximum purchase price from the "Goods Receipt" sheet using vpr and substitute it in 1 sheet?
Here is the spreadsheet
https://docs.google.com/spreadsheets/d/1X8voLVjCJO...
I am trying to use

=ВПР(МАКС(A:A)B5;'Поступления_товара'!$C$4:$I$700;5;ЛОЖЬ)

But the syntax fails...

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
Alexander Ivanov, 2021-09-08
@arsenaljek

Maybe,

=MAXIFS('Поступление_товара'!I2:I9;'Поступление_товара'!E2:E9;E2)

Or for articles
=MAXIFS('Поступление_товара'!I2:I9;'Поступление_товара'!C2:C9;D2)

6138b3bd2e237094113296.png
Please note that you have lines on the source sheet with the word " magnifier " with a space at the end. Your formulas may break from this.

O
Oleg, 2021-09-08
@Oleg_F

And why exactly with the help of vpr?
Use a simple max formula, e.g.
MAX('Items_in_Items'!$I$4:$I$700) will show the maximum number in the range I 4-700

G
Grigory Boev, 2021-09-08
@ProgrammerForever

Something like this:

=МАКС(
   filter('Поступления_товара'!$I$4:$I;'Поступления_товара'!$F$4:$F=D2)
)

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question