Adds the numbers in a column of a list or database that match conditions you specify.
Эта функция в Google Таблицах работает так же, как в Excel — тот же синтаксис и аргументы.
DSUM(database, field, criteria)DSUM is a database function that performs conditional summation based on a criteria range. It is particularly useful when you need to filter data by multiple criteria across different columns before calculating the total.
=DSUM(A1:C10, "Sales", E1:F2)Результат: 1500
Sums the 'Sales' column for all rows where the 'Region' is 'North' as defined in the criteria range E1:F2.
Yes, you can add more rows or columns to your criteria range to filter by multiple conditions simultaneously.