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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
renem
Partner - Contributor III
Partner - Contributor III

View contents of bookmark in textbox

I want to be able to view the fields and values selected within a bookmark and display this in a textbox on a sheet so that the user is able to see exactly what the bookmark contains. How do I do this?

12 Replies
Not applicable

Hi,

I can not change the text in the text object,

When I run this code it gives such an error;

set txt = ActiveDocument.getsheetobject("TX01")



Object doesn't support this property or method: 'ActiveDocument.getsheetobject(...).SetText'



Not applicable

Sorry the code is;

ActiveDocument.getsheetobject("TX02" ).SetText = msg

Not applicable

I find the correct code;

set tx = ActiveDocument.GetSheetObject("TX02")

set txprop = tx.GetProperties

txprop.Layout.Text.v = msg

tx.SetProperties txprop