Sub expXml()
Dim objOtherTbls As AdditionalData
Set objOtherTbls = Application.CreateAdditionalData()
objOtherTbls.Add "internet"
'Here is where the export takes place
Application.ExportXML acExportTable, "internet", "C:\Access\MyXml.xml", AdditionalData:=objOtherTbls
End Sub