Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
dhavalrg
New Member

AND opeation

Currently we have created the following dashboard.

 

dhavalrg_0-1723626255965.png

 

how can we implement the logic to get only 2 as a value in action oriented and 3 as a value in decision making.

4 REPLIES 4
Anonymous
Not applicable

Hi @dhavalrg, anmolmalviya05, thank you for your prompt reply!

 

Currently, it is not feasible to use slicers and filters in the dashboard, we can filter a dashboard tile in focus mode, however we can't save the filter.

vyajiewanmsft_2-1724059075052.png

 

vyajiewanmsft_1-1724059016611.png

 

Or we could only filter the data in report, create a measure as shown below:

 

MyMeasure = 
IF (
    SELECTEDVALUE('Table'[Behavior:ActionOriented]) = 2 && SELECTEDVALUE('Table'[Behavior:DecisionMaking])= 3,
    1,
    0
)

 

Then use the measure to filter the table :

vyajiewanmsft_0-1724058464797.png

Best regards,

Joyce

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Our goal is to attain this outcome by employing a dynamic strategy, which allows us to choose various skill labels, resulting in corresponding outputs.

Anonymous
Not applicable

Hi @dhavalrg,

 

You could create different slicer to  Behaviour:ActionOriented and Behaviour:DecisionMaking columns to filter the report.

vyajiewanmsft_0-1724738731038.png

 

 

anmolmalviya05
Super User
Super User

Hi @dhavalrg, Hope you are doing good!

You can deal with this situation using DAX, you can try below approach:

MyMeasure =
SWITCH(
TRUE(),
SELECTEDVALUE(TableName[ColumnName]) = "Behaviour:ActionOriented", 2,
SELECTEDVALUE(TableName[ColumnName]) = "Behaviour:DecisionMaking", 3,
BLANK() -- This returns BLANK() if the column value is neither "a" nor "b"
)

 

Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.