I would like to know if there is any way through Python to query the fields of an attribute table of a .shp file (ArcMap) from an .xlsm file (Excel with macros enabled), this since what I currently do repetitively and manual is to copy the attribute table from ArcMap to my Excel file "VINCULACION_S.xlsm".
One of the attribute tables that I want to copy is the one I show in this image,

Towards the .xlsm file already mentioned, which I show in this image.

This is a good start apparently
# Set local variables
inTable = outTable
outXLS = VHFolder + "/Vinculacion_S.xlsx" #this is where I had to give the file path and then the file name
# Execute TableToExcel
arcpy.TableToExcel_conversion(inTable, outXLS)
ersion(inTable, outXLS)