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: 
kp072017
Partner - Contributor II
Partner - Contributor II

Based on selection ,need to create a text box

Hi All,

I need to create a text boxes based on selections ..like,if i select the value 3 in the list box .. so 3 text boxes should be created...

1 Solution

Accepted Solutions
nagireddy_qv
Creator II
Creator II

Hi

May be this code will help you ..

set mytext = ActiveDocument.ActiveSheet.CreateTextObject

prop = mytext.GetProperties

prop.Layout.Text.v = "abc"

mytext.SetProperties prop

View solution in original post

1 Reply
nagireddy_qv
Creator II
Creator II

Hi

May be this code will help you ..

set mytext = ActiveDocument.ActiveSheet.CreateTextObject

prop = mytext.GetProperties

prop.Layout.Text.v = "abc"

mytext.SetProperties prop