You have an Excel table named 'SalesData' with columns for '[Units]' and '[Unit_Price]'. You want to add a new calculated column named '[Revenue]' that multiplies the units by the unit price for each row. Which formula, when entered into the first cell of the new column, will correctly and automatically populate for all other rows in the table?
-
A
=B2*C2
-
B
=[@[Units]]*[@[Unit_Price]]
-
C
=SalesData[Units]*SalesData[Unit_Price]
-
D
=PRODUCT([Units],[Unit_Price])