0
0
Excelspreadsheet~10 mins

Sharing workbooks in Excel - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to save the workbook with sharing enabled.

Excel
ActiveWorkbook.SaveAs Filename:="SharedBook.xlsx", [1]:=True
Drag options to blanks, or click blank then click option'
AReadOnlyRecommended
BCreateBackup
CShareWB
DPassword
Attempts:
3 left
💡 Hint
Common Mistakes
Using ReadOnlyRecommended instead of ShareWB
Confusing password protection with sharing
Omitting the sharing parameter
2fill in blank
medium

Complete the code to allow multiple users to edit the workbook simultaneously.

Excel
ActiveWorkbook.[1] = True
Drag options to blanks, or click blank then click option'
ATrackChanges
BEnableAutoSave
CAllowEditRanges
DMultiUserEditing
Attempts:
3 left
💡 Hint
Common Mistakes
Using KeepChangeHistory instead of MultiUserEditing
Confusing AllowEditRanges with multi-user editing
Trying to enable AutoSave for sharing
3fill in blank
hard

Fix the error in the code to properly share the workbook.

Excel
ActiveWorkbook.[1] = True
Drag options to blanks, or click blank then click option'
AMultiUserEditing
BSharedWorkbook
CShareWorkbook
DSharing
Attempts:
3 left
💡 Hint
Common Mistakes
Using ShareWorkbook instead of MultiUserEditing
Trying to call Add on a non-collection property
Confusing method and property names
4fill in blank
hard

Fill both blanks to create a shared workbook and enable change tracking.

Excel
ActiveWorkbook.[1] = True
ActiveWorkbook.[2] = 30
Drag options to blanks, or click blank then click option'
AMultiUserEditing
BKeepChangeHistory
CEnableSharing
DAllowEditRanges
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing AllowEditRanges with sharing
Using EnableSharing which is not a valid property
Setting KeepChangeHistory before enabling sharing
5fill in blank
hard

Fill all three blanks to save a shared workbook with a password and enable change history.

Excel
ActiveWorkbook.SaveAs Filename:="SharedBook.xlsx", Password:="[1]", [2]:=True
ActiveWorkbook.[3] = 30
Drag options to blanks, or click blank then click option'
Asecret123
BShareWB
CKeepChangeHistory
DReadOnlyRecommended
Attempts:
3 left
💡 Hint
Common Mistakes
Using ReadOnlyRecommended instead of ShareWB
Omitting the password or using an empty string
Not enabling KeepChangeHistory for history