Look at the row for Product A and sum across the columns representing regions.
The sales for Product A are in row 5 across columns B to E, so summing B5:E5 adds all regions for Product A.
Think about counting distinct or unique values.
COUNTUNIQUE() counts unique values, which is needed to count distinct customers.
Use MATCH to find position of max sales, then INDEX to get region name.
MATCH finds the row of max sales in B2:B6, INDEX returns the region name from A2:A6 at that row.
Use SUMPRODUCT to multiply condition by values for conditional sum.
SUMPRODUCT multiplies the condition (TRUE=1, FALSE=0) by sales values, summing only those >1000.
Check how the condition filters rows and how SUMPRODUCT sums matching rows.
The condition (A2:A6="Product D") creates an array with 1 for Product D row and 0 elsewhere. Multiplying by B2:E6 sums only Product D sales.