So here is what I have...please help
I have created three sheets in Excel.
The first sheet contains the actual data
The second sheet contains an audit log that is already set up through VBA code.
The third sheet is a user list of all the authorized users that will be able to access the spreadsheet, set up like this example:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]User Name[/TD]
[TD]Password[/TD]
[TD]Data Sheet[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]bsmith[/TD]
[TD]123[/TD]
[TD]x[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]twilliams[/TD]
[TD]456[/TD]
[TD]x[/TD]
[/TR]
</tbody>[/TABLE]
I want to know how to create a prompt that will appear upon opening the spreadsheet that will only let authorized users access the file.
Upon opening the file, I want the second and third sheets to use the "xlSheetVeryHidden" feature so they will be hidden from general users.
I have created three sheets in Excel.
The first sheet contains the actual data
The second sheet contains an audit log that is already set up through VBA code.
The third sheet is a user list of all the authorized users that will be able to access the spreadsheet, set up like this example:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]User Name[/TD]
[TD]Password[/TD]
[TD]Data Sheet[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]bsmith[/TD]
[TD]123[/TD]
[TD]x[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]twilliams[/TD]
[TD]456[/TD]
[TD]x[/TD]
[/TR]
</tbody>[/TABLE]
I want to know how to create a prompt that will appear upon opening the spreadsheet that will only let authorized users access the file.
Upon opening the file, I want the second and third sheets to use the "xlSheetVeryHidden" feature so they will be hidden from general users.