What is the advantage to sharing a workbook? How can you keep track of all the changes made?

What will be an ideal response?


By sharing a file other people can make changes to it and then the changes can be merged together automatically. This reduces the potential for error due to data entry mistakes. When they are merged, you can track the changes by creating a worksheet with the change history before you stop sharing the workbook. This tells you who made changes to what cells.

Computer Science & Information Technology

You might also like to view...

Which diagram is also called a collaboration diagram?

a. State machine diagram. b. Communication diagram. c. Activity diagram. d. Sequence diagram.

Computer Science & Information Technology

The individual values contained in an array are known as

a. parts b. items c. constants d. elements e. None of these

Computer Science & Information Technology

The following function has ____.Function Numeric average()   // Declare variables   Declare Numeric inputNum // number entered   Declare Numeric quantity // # numbers input   Declare Numeric total = 0 // accumulated total   Declare Numeric index // loop variable   Declare Numeric avg // avg of numbers   // Ask user how many numbers to input   Display "How many numbers will you input? "   Input quantity   // Ask user how many numbers to input   Display "How many numbers will you input? "   Input quantity   // Compute and return average, end function   avg = total / quantity      Return avgEnd Function

A. strong cohesion B. high coupling C. weak cohesion D. strong vulnerability

Computer Science & Information Technology

____________________-control statements allow you to determine the order in which statements execute in a program.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology