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.
Is there any limit on the number of 'values' to provide for filtering, when using the 'In' operator; in a basic PowerBI Embedded filter such as this one below?
const basicFilter: pbi.models.IBasicFilter = {
$schema: "http://powerbi.com/product/schema#basic",
target: {
table: "Store",
column: "Count"
},
operator: "In",
values: [1,2,3,4] // Is there any limit on the number of values here?
}It appears that visuals 'fail to display' when the number of items in 'values' is above 1000.
Many thanks in advance.
I can reproduce the similar issue, when the values contains too many values. As I'm not finding any document about this issue, so not sure if it the limitation or not.
I've already raised an issue in the Github. Meanwhile I'm trying to confirm with the product team. I will post back if there comes any update.