MicroStrategy / mstrio-py

Python integration for MicroStrategy
Apache License 2.0
90 stars 59 forks source link

No support for changing the Metric Join Type. #171

Closed vladbalcanu closed 1 month ago

vladbalcanu commented 8 months ago

There is currently no way of picking a different Metric Join Type from the python API. This should not be confused with the metric formula join type which is currently a property of the Metric object and can be changed when creating/updating a Metric object. But such a parameter is not available for the Metric Join Type (the one that affects how the metric joins with the other metrics inside a report. I also searched for an alternative but I could not find any right now inside the Python API.

mgorskiMicroStrategy commented 8 months ago

@vladbalcanu in metric VLDB settings there is 'Metric Join Type'. You can check current value and possible options this way: print(metric_obj.vldb_settings['Metric Join Type']) and alter this way: metric_obj.alter_vldb_settings(names_to_values={'Metric Join Type':<SETTING VALUE>})

apiotrowskiMicroStrategy commented 1 month ago

Workflow provided. Closing