break link problem

G

Guest

When I run the following code... it crashes my excel and I believe it is
because of the break links command.

any ideas?

Application.Run "'SNW INV PLAIN.xls'!FilterAll"
Sheets("Agencies").Select
Range("a1").Select
Sheets("Corporates").Select
Range("a1").Select
Sheets("Tax Muni's").Select
Range("a1").Select
Sheets("Muni's").Select
Range("a1").Select
Sheets("Agencies").Select
Sheets(Array("Agencies", "Corporates", "Tax Muni's", "Muni's")).Select
Sheets("Agencies").Activate
Sheets(Array("Agencies", "Corporates", "Tax Muni's", "Muni's")).Copy
ActiveWorkbook.BreakLink Name:="S:\Inventory\SNW INV PLAIN.xls", Type:= _
xlExcelLinks
Application.Wait Now + TimeSerial(0, 0, 1)
Sheets("Agencies").Select
ActiveWorkbook.Protect Password:="snwwb", Structure:=True, Windows:=False
sFilename = "S:\Inventory\SNW Offerings " & Format(Now, "yyyy-mm-dd")
ans = MsgBox("Save file as " & sFilename)
If ans = vbOK Then
ActiveWorkbook.SaveAs Filename:=sFilename
End If
 
N

Norman Jones

Hi John,

What is the version of Excel?

I believe that BreakLink was introduced with xl2002.
 
G

Guest

Hi John

Try to use

Application.Wait (Now() + TimeValue("00:00:01"))

TimeSerial is used to return a date variable (Integer). Syntax is MyTime =
TimeSerial(15, 29, 45)
 
G

Guest

well I have excel 2003, and with that time value change it ran correctly 3
times and crashed the fourth... which is better than before... which seemed
to crash every other time, but this is strange.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top