Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Guys,
I need to insert a value into a Text object
I am trying to use something like below but it doesn't work.
Thanks in advance for any help,
Aldo.
Function Test2
set obj = ActiveDocument.GetSheetObject("TestA1")
obj.SetText = "AAAA"
End Function
Hello Aldo,
Something like this should work
Sub ST ActiveDocument.GetSheetObject("TX01").SetText "AAAA"End Sub
Hope this helps.