Hello,
Filtering CSV populated views works fine, example:
query_filter = TSC.CSVRequestOptions()
query_filter.vf("my_key", "my_value")
summary_view_id = "my_id"
summary_view = server.views.get_by_id(summary_view_id)
server.views.populate_csv(summary_view,query_filter)
Now if I want to work directly with excel and I'll do the the following:
query_filter = TSC.ExcelRequestOptions()
query_filter.apply_query_params({"my_key": "my_value"})
summary_view_id = "my_id"
summary_view = server.views.get_by_id(summary_view_id)
server.views.populate_excel(summary_view,query_filter)
I get the full view without the filtering applied.
I cannot find much around ExcelRequestOptions so I might be doing this in the wrong way.
Appreciate any help!
Thank you,
Alessandro
Hello,
Filtering CSV populated views works fine, example:
Now if I want to work directly with excel and I'll do the the following:
I get the full view without the filtering applied.
I cannot find much around ExcelRequestOptions so I might be doing this in the wrong way.
Appreciate any help!
Thank you,
Alessandro