Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

VB Script - Insert value into Box object

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

1 Reply
Miguel_Angel_Baeyens

Hello Aldo,

Something like this should work

Sub ST ActiveDocument.GetSheetObject("TX01").SetText "AAAA"End Sub


Hope this helps.