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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Bokazoit
Responsive Resident
Responsive Resident

Need a measure to use a selected value from a slicer that has set no interaction with table

I am trying to build a table with multiple selections that interacts with a measure. The selection page looks like this (dont mind the ugly colors - I am still building and testing 😄 )

 

Bokazoit_0-1666165778984.png

 

The measure will depending on the choosen criterias alter the selection in the table. It works, but when I add the Date selection and the Støttetype selection, they work more like filters on my table instead of the measure itself. Maybe I am talking nonsense, so for my own sake I created a simple page, where I have a slicer from a parameter

Bokazoit_1-1666166071368.png

 

The slicer is not active on the table and from what I can see the PriceChoice (= 10) is not entered into the measure 'Prio'

 

Prio = 

VAR PrisValg = CALCULATE(MIN(Brevpris[Brevpris]), ALLSELECTED(Brevpris))

VAR RFV = CALCULATE(([Direct mail Bidrag])/([Antal Direct Mails]*Brevpris[Værdien Brevpris]))

RETURN

IF ( [Antal Direct Mails] > 0 && RFV > 1, RFV)

 

If I create the measure 'PriceChoice'

 

PriceChoice = CALCULATE(MIN(Brevpris[Brevpris]), ALLSELECTED(Brevpris))

 

It shows the correct value

 

Bokazoit_2-1666166252367.png

but not in the table. Is it at all possible to make this work? I need the interaction to be off, and only use the measure as the filtered value in the table if that makes sense

2 REPLIES 2
Anonymous
Not applicable

Hi @Bokazoit ,

 

Don't use allselected(), use all() and add filter condition.

 

Best Regards,

Jay

Still return a zero:

PriceChoice = CALCULATE(MIN(Brevpris[Brevpris]), ALL(Brevpris[Brevpris]))

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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