I get a file named "activeworkbook.name" on the correct folder.
I don't see how if you're using the code you posted (which is still not in code tags as requested).
Changing the directory and then saving the file in the now-current directory is redundant. Either
ChDir "X:\pool\Daily"
ActiveWorkbook.SaveAs Filename:=ActiveWorkbook.Name, _
FileFormat:=xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False
...or
ActiveWorkbook.SaveAs Filename:="x:\POOL\DAILY\" & ActiveWorkbook.Name, _
FileFormat:=xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False
Bookmarks