Complete the code to enable tracking changes in Excel.
Go to the Review tab and click on [1] to start tracking changes.
To track changes, you must click Track Changes in the Review tab.
Complete the code to add a comment to a cell.
Right-click the cell and select [1] to add a comment.
To add a comment, choose New Comment from the right-click menu.
Fix the error in the formula to show the comment indicator in a cell.
=IF(ISBLANK(A1), "", [1])
The CELL("comment", A1) function returns information about comments in cell A1.
Fill in the blank to create a formula that counts cells with comments in range A1:A10.
=SUMPRODUCT(--(NOT(ISBLANK([1]("comment",A1:A10)))))
The CELL("comment", cell) function returns comment info, so wrapping it with ISBLANK helps count commented cells.
Fill all three blanks to create a formula that shows the author of a comment in cell B2 if it exists.
=IF(NOT(ISBLANK([1]("comment", B2))), [2]([3]("comment", B2), FIND(":", [3]("comment", B2)) - 1), "No Comment")
This formula uses CELL("comment", B2) to get the comment text, then LEFT and FIND to extract the author's name before the colon.