Junior,
Acredito que você consiga gerar a conexão Assim:
1º - Abra o excel -> Alt + f11 (vc abrirá o vba)
2º - Clique Inserir > Módulo (o modulo foi criado)
3º - coloque o codigo abaixo:
Sub testeSql()
Dim Cmd As New ADODB.Command
Dim Cnn As New ADODB.Connection
Dim rs As New ADODB.Recordset
Dim StrCon As String
Set Cnn = New ADODB.Connection
Set Cmd = New ADODB.Command
StrCon = Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=True;User ID=sa;Password=SUASENHA;Initial Catalog=SEUBANCODEDADOS;Data Source=SEUSERVIDOR
MsgBox StrCon
Cnn.Open StrCon
End Sub
4º Após colocar seus dados, conforme o banco, vc pode testar com o F5.
Espero ter ajudado!!!