Complete the formula to add a label "Sales" above the data in column A.
=LABEL(A2:A10, [1])The LABEL function requires the label text in quotes. So use "Sales" to label the column.
Complete the formula to label the range B2:B15 as "Expenses".
=LABEL([1], "Expenses")
The range to label is B2:B15, which contains the data without the header row.
Fix the error in the formula to label C2:C20 as "Profit".
=LABEL(C2:C20, [1])The label text must be enclosed in double quotes to be recognized as a string.
Fill both blanks to label the range D3:D12 as "Revenue" and the range E3:E12 as "Cost".
=ARRAYFORMULA({LABEL(D3:D12, [1]), LABEL(E3:E12, [2])})The first label is "Revenue" for D3:D12, and the second label is "Cost" for E3:E12.
Fill all three blanks to create a dictionary with keys as uppercase column headers and values as the ranges labeled "Q1", "Q2", and "Q3".
=[1]: LABEL(A2:A10, [2]), [3]: LABEL(B2:B10, "Q2"), "Q3": LABEL(C2:C10, "Q3")}
The dictionary uses keys "Q1", "Q2", "Q3" (uppercase column headers). The value for "Q1" is the A2:A10 range labeled "Q1", for "Q2" is B2:B10 labeled "Q2", and for "Q3" is C2:C10 labeled "Q3". Thus, BLANK_1 (key) and BLANK_2 (label) are both "Q1"; BLANK_3 (key) is "Q2".