You were totally right on the first step. Adding the .dbf extension made all of the difference. If I'm understanding your question correctly, my response is that these steps are what's done manually, so I am trying to duplicate the process. I believe the XY data is actually needed and step 2 is necessary to get it, isn't it? Unfortunately, this isn't my process and I know almost nothing about ArcGIS, but I do know that the final Excel spreadsheet consists of an X column, a Y column, and a "Value" column, which I believe represents the points from the 50 ft grid. I'm guessing I do not need to preserve the geometry. However, I'm fine attempting to bypass step 2 and try your suggestion - too much data is better than not enough. So, my question now is, the Table to Excel script seems to require a gdb, but it sounds like you are suggesting I can go directly from my .dbf to an .xls file. I tried this, but it fails. Do you see where I'm going wrong?:
import arcpy
# Set environment settings
arcpy.env.workspace = r"C:\"
# Set local variables
in_table = "TestTable.dbf\TestTable"
out_xls = "test.xls"
# Execute TableToExcel
arcpy.TableToExcel_conversion(in_table, out_xls)
Error:
Traceback (most recent call last):
File "c:\Table2XLS.py", line 8, in <module>
arcpy.TableToExcel_conversion(in_table, out_xls)
AttributeError: 'module' object has no attribute 'TableToExcel_conversion'