Forum Discussion
KaveeMendis
3 years agoNew Member
Embed power bi report with predefined parameters using C#
Hello everyone, I'm new to Power BI, and I've been assigned the task of embedding a Power BI report into a web application. I've been following the guidelines provided by Microsoft (Create an Azu...
ibarrau
3 years agoSuper User
I'm not sure about the specific scenario, however you can explore the features of embedded and how they work at the playground: https://playground.powerbi.com/en-us/explore-features
When you click on an action you can check how it's done and if it's the action you were looking for.
I hope that helps,
KaveeMendis
3 years agoNew Member
Hi ibarrau,
Thank You for your response!!😊
I found a solution.
const advancedFilter = {
$schema: "http://powerbi.com/product/schema#advanced",
target: {
table: "Ethnicity",
column: "Ethnicity"
},
logicalOperator: "And",
conditions: [
{
operator: "Contains",
value: "Group C"
}
],