Günstigsten Preis in einer Excel Tabelle anzeigen lassen?

Hey Leute,

Ich möchte dass in der Zeile B9, B1 und B11 jeweils der günstigste Preis steht.

Also Es soll in der Matrix A1:D4 nach den Produktnamen Apfel A9 gesucht werden und dann in der selben Spalte nach rechts der günstigste Preis gesucht und angezeigt werden.

Siehe Foto

Vielen Dank!

(1 votes)
Loading...

Similar Posts

Subscribe
Notify of
3 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
daCypher
1 year ago

In your case, the products have the same sorting in both cases. So you don’t need to look for the respective product, but you can simply use the formula in B9:

=MIN(B2:D2)

and simply pull them down so that the fields for banana and pear are also filled.

daCypher
1 year ago
Reply to  WWC2023

For my formula, it doesn’t matter how big the table is. Mainly the products have the same order (you could also load the respective product with =A2 into the result range)

If the products are different (i.e., for example, in the overall table you have 1000 products in it, but in the result area you just want to pick out five pieces of it), I find the filter function easiest to find out a specific line that can then be transferred to the min function.

Example:

=MIN(FILTER($B$2:$D$4;$A$2:$A$4=A9; 0))

The products can then also be confused or you can write the same several times. If a product is not found at all, 0 is output (you can write something else instead of 0, which should come if the product is not found)