Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
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.