Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Hi,
I have a requirement which I need to pass more than 100 values as a parameter to filter the data in PBI Embedd report.
As per my understanding It accepts only 100 like this:
const filter = {
$schema: "http://powerbi.com/product/schema#basic",
target: {
table: table,
column: column
},
operator: "In",
values: [1,2,3,4,5,6,7,8,9,10,11, ...] // accepts only 100 values
};
var embedConfiguration = {
type: 'report',
accessToken: accessToken,
id: reportId,
embedUrl: 'https://embedded.powerbi.com/appTokenReportEmbed',
settings: {
filterPaneEnabled: false,
navContentPaneEnabled: true
},
filters: [filter]
};
var $reportContainer = $('#content');
var report = powerbi.embed($reportContainer.get(0), embedConfiguration);
report.off("loaded");
// Report.on will add an event handler which prints to Log window.
report.on("loaded", function () {
// Log.logText("Loaded");
});
My question is how can we pass more than 100 values as a parameter since the filter array size is only 100.
Please help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.