P
Pritesh_karma
I have a word template file.
I need to know how to write to a specific cell in a table in the word
document.
The document has a few tables...
How do i write to a specific cell. Is there a place where i can name
the table?
With wordApp
Set wordDoc = .Documents.Open("C:\fsc\template.doc")
wordDoc.Tables(1).Cell(3, 1) = "hello"
End With
Thats the code i have now. dosnt seem to be working.
I need to know how to write to a specific cell in a table in the word
document.
The document has a few tables...
How do i write to a specific cell. Is there a place where i can name
the table?
With wordApp
Set wordDoc = .Documents.Open("C:\fsc\template.doc")
wordDoc.Tables(1).Cell(3, 1) = "hello"
End With
Thats the code i have now. dosnt seem to be working.