Access Authorization

wmtsub

Active Member
Joined
Jun 20, 2018
Messages
322
I am using the code below to make sure only the list of authorized users can access a work book. However I need to move the file "Test" to One Drive so it is accessible from laptops on the road. So I thought to change line 'location to read: "https://1234-4578-my.sharepoint.com/:t:/g/personal/edward_selkov_1234_4578_com/EZlrqxgr-dhAnryvin2jnJoBRsbrorG-Ki488h61wwdQkA?e=0cLPbH" which is the link to get the file but it does not work. how can I open the file? can anyone help?




Sub AuthorizedAccess()
Open "C:\Users\edward.selkov\Desktop\test.txt" For Input As #1 ' location

Do While Not EOF(1)
Line Input #1 , ltxt
If ltxt = "Edward Selkov" Then GoTo xit
Loop
Close
ActiveWorkbook.Close False
MsgBox "Sorry You Are Not Authorized to Access This File"
xit:
End Sub
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.

Forum statistics

Threads
1,215,982
Messages
6,128,104
Members
449,421
Latest member
AussieHobbo

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top