This is really easy to do with a CSV or in excel.
In excel look into the FileSystemObject
Then you can just loop through a range like
Dim fso As Object
Set fso = CreateObject("Scripting.FileSystemObject")
Dim oFile As Object
Set oFile = fso.CreateTextFile('c:\XMLImport.xml')
oFile.writeline "<Tags>"
for x in range
oFile.writeline "<tag name=>"
oFile.writeline "</Tags>"
I can’t share our actual code since it is NDA.
But others might be able to expound on it further.