With the use of Python (win32com) I want to insert a user defined page number in a table cell of MS Word. Normally in Word if I want to have custom page number different from standard PAGE variable I press Cnrtl+F9 and insert field expression like this {={PAGE}+3}. So I want to get it in Python.
What I tried is inserting field in a table cell:
import win32com.client as win32
word = win32.Dispatch('Word.Application')
document = word.ActiveDocument
myRange = document.Paragraphs(1).Range
myTable = document.Tables.Add(myRange, 5, 5,
win32.constants.wdWord8TableBehavior)
cellRange = myTable.Cell(2, 2).Range
myField = document.Fields.Add(
cellRange,
win32.constants.wdFieldEmpty,
'PAGE',
True)
In result I get this message:
" File "C:\Users\2E78~1\AppData\Local\Temp\gen_py\3.7\00020905-0000-0000-C000-000000000046x0x8x7\Fields.py", line 35, in Add , Type, Text, PreserveFormatting) pywintypes.com_error: (-2147352567, 'Error.', (0, 'Microsoft Word', 'This command is not available.', 'wdmain11.chm', 37373, -2146823683), None)"
P.S. I tried to record macro in Word to see VBA commands, but it seems to record very basic actions only.