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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register 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