Hi All
I have a powerBI embedded report using a PBIX with embedded csv data. The report shows up find but I can't filter on it.
I created a test below to try but all that happens when I try is it reloads the page.
The problem seems to be with removeFilters() and getFilters()
Both are throwing an error that I can't trap
Any help would be very much appreciated
function addFilter() { //clearFilters(); //debugger; //var target = $('#filter-target').val(); //var table = $('#filter-table').val(); //var column = $('#filter-column').val(); //var value = ''; // $('#filter-value').val(); var basicFilter = { $schema: "http://powerbi.com/product/schema#basic", target: { //table: "tblEIMMaster", //column: "Activity" table: "Eimdata20170203", column: "ID" }, operator: "In", values: [69872, 69719, 69863, 69880, 69598, 69604, 68796, 69555, 69091, 67951] };