Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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