Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Dynamic table containing list of objectids

This is my requirement.

whenever i reload the script one table should populate the objectids of the objects present in the sheet.

Is it possible??

1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

This should work on QV10 SR2 or later:

LET vDocPath = DocumentPath();

SheetObject:

LOAD ObjectId,

    Caption,

    Type

FROM [$(vDocPath)] (XmlSimple, Table is [DocumentSummary/SheetObject]);

-Rob

http://robwunderlich.com

View solution in original post

4 Replies
Jason_Michaelides
Luminary Alumni
Luminary Alumni

Hmm - not sure about this.  See if this link can help you:

http://community.qlik.com/message/12038#12038

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

This should work on QV10 SR2 or later:

LET vDocPath = DocumentPath();

SheetObject:

LOAD ObjectId,

    Caption,

    Type

FROM [$(vDocPath)] (XmlSimple, Table is [DocumentSummary/SheetObject]);

-Rob

http://robwunderlich.com

Not applicable
Author

Brilliant..... Thanks a lot Rob

Not applicable
Author

Hi Rob,

this post is great. Can you additionally please tell me, how to integrate the objectname as well.

Thanks for you help.

Chris