An analyst needs to create a dynamic, spillable list of all sales records from a table named 'SalesData' where the '[Region]' is "East" AND the '[Revenue]' is greater than 10000. Which of the following formulas is the most appropriate for this task?
-
A
=FILTER(SalesData, (SalesData[Region]="East") * (SalesData[Revenue]>10000))
-
B
=SUMIFS(SalesData[Revenue], SalesData[Region], "East", SalesData[Revenue], ">10000")
-
C
=IF(AND(SalesData[Region]="East", SalesData[Revenue]>10000), SalesData, "No Results")
-
D
=VLOOKUP("East", SalesData, 3, FALSE)