EXCEL - każdy go zna zagadka nr 1
Zaczynamy naszą przygodę z ECDL od EXCELA. Wg mnie jeden z najbardziej potrzebnych programów Ms Office. Zagadka:Masz listę cen produktów w kolumnie A, od A1 do A15. Chcesz obliczyć sumę tych cen, ale tylko dla produktów, których cena przekracza 100 zł. Jakie formuły możesz użyć, aby to osiągnąć?Mamy na to co najmniej 2 rozwiązania
Zaczynamy naszą przygodę z ECDL od EXCELA. Wg mnie jeden z najbardziej potrzebnych programów Ms Office. Zagadka:Masz listę cen produktów w kolumnie A, od A1 do A15. Chcesz obliczyć sumę tych cen, ale tylko dla produktów, których cena przekracza 100 zł. Jakie formuły możesz użyć, aby to osiągnąć?Mamy na to co najmniej 2 rozwiązania
3 users upvote it!
answersCount
=SUMIF(A1:A15, ">100")
Second one is easier..
=SUMIF(A1:A15, ">100")
Second one is easier..
Machine translated
likesCount
Mystery partially solved ;)
Solution:
To solve this riddle, you can use several different formulas in Excel:
Sum with condition (using SUMIF):
This formula sums all values in the range from A1 to A20 that are greater than 100 PLN.
Sum with condition (using SUMIFS):
This formula is more flexible than SUMIF and allows for adding more criteria if needed in more complex cases.
Both methods are useful and efficient, but the choice between them may depend on the specific needs of the user and the version of Excel being used. This is a great example of how conditional functions can be used to manage data in Excel!
excel
Copy code
=SUMIFS(A1:A20, A1:A20, ">100")
excel
Copy code
=SUMIF(A1:A20, ">100")
Mystery partially solved ;)
Solution:
To solve this riddle, you can use several different formulas in Excel:
Sum with condition (using SUMIF):
This formula sums all values in the range from A1 to A20 that are greater than 100 PLN.
Sum with condition (using SUMIFS):
This formula is more flexible than SUMIF and allows for adding more criteria if needed in more complex cases.
Both methods are useful and efficient, but the choice between them may depend on the specific needs of the user and the version of Excel being used. This is a great example of how conditional functions can be used to manage data in Excel!
excel
Copy code
=SUMIFS(A1:A20, A1:A20, ">100")
excel
Copy code
=SUMIF(A1:A20, ">100")
Machine translated