Hi there,
I would like to pull an OLAP table component out one analysis sheet into the ML bench
If I try this way by ID it works:
components = sheet.components
component = components.find_by_id('Component_ID_Here')
But I would like to import the table by name as the component ID might change.
So I tried this but it does not work.:
components = sheet.components
component = components.find('Table_Title_Here')
Hope you can give me a hint.
Best,
Conny