VBA Write to Logfile on Network - Only working for me?

VBAtman

New Member
Joined
Sep 17, 2015
Messages
4
Hey everyone, first post here.

I have a file that multiple users access on a shared network drive (sharepoint).

I have this macro setup to update a .log file with the username and date/time when users open the file. Here's the logmessage code:

Sub LogInfo(LogMessage As String)

'set path and name of the log file where you want to save
'the log file
Dim path As String
path = ThisWorkbook.path
Const LogFileName As String = "\Log\logfile.LOG"
Dim FileNum As Integer
Dim fullFilePath As String

fullFilePath = path & LogFileName
FileNum = FreeFile ' next file number
Open fullFilePath For Append As #FileNum ' creates the file if it doesn't exist
Write #FileNum, LogMessage ' write information at the end of the text file
Close #FileNum ' close the file

Exit Sub

Here is the call in the Sub Workbook_Open():Application.AskToUpdateLinks = False
LogInfo ThisWorkbook.Name & " opened by " & _
Application.userName & " " & Format(DateTime.Now, "yyyy-mm-dd hh:nn AM/PM")



This works correctly for me, and only me. Otherwise it errors out. Any suggestions? The location of the workbook and the log file is on a shared network drive that all users have access to.

Appreciate any feedback you can give!
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Hi and welcome to the MrExcel Message Board.

The exact details of the error message might be useful. This may well provide some clues.

Unfortunately, I no longer have access to a Sharepoint system so I can't test anything. However, I would start by checking that everyone had suitable access permissions. Also check if ThisWorkbook.path returns the answer you were expecting when others use the workbook.

You will probably need to find a "tame user" who will log on for you so that you can debug the macro using their credentials while they watch.
 
Upvote 0
Hi and welcome to the MrExcel Message Board.

The exact details of the error message might be useful. This may well provide some clues.

Unfortunately, I no longer have access to a Sharepoint system so I can't test anything. However, I would start by checking that everyone had suitable access permissions. Also check if ThisWorkbook.path returns the answer you were expecting when others use the workbook.

You will probably need to find a "tame user" who will log on for you so that you can debug the macro using their credentials while they watch.

Thanks for the reply!

I had someone run it and they are getting Runtime Error 52, "Bad file name or number". The user has the same access as I do.
 
Upvote 0
Was it the "open file" command where that happened?

What was the actual file name as created by Excel for that user? Something like the addition of a:
Code:
Debug.Print [I]fullFilePath[/I]
in the code just before the Open file command should display the name in the Debug Window.
You could use MsgBox if you prefer.
Code:
MsgBox [I]fullFilePath[/I]
 
Upvote 0
Yes, appears to be happening on the Open File command.

I had the msgbox print out the path:

https://[network path]/Log/Logfile.LOG

It looks like it should be working

It appears to be working correctly up to that point. I'm stumped!
 
Upvote 0
I don't know. Is that supposed to work? I would not expect to be able to update a web page like that.

Does it work if you map Sharepoint as one of your drives? I know, permissions permitting, you can make Sharepoint look like another network drive. Does that work?
 
Upvote 0
Oh it's a file located on a sharepoint drive. I do have it mapped to a drive and access it thru explorer view. When I run the macro on my machine, it works. It doesn't work for anyone else.

Maybe I'll check to see if they have it mapped similarly.
 
Upvote 0

Forum statistics

Threads
1,214,567
Messages
6,120,268
Members
448,953
Latest member
Dutchie_1

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