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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Live now!

Reply
newbie9292
Helper II
Helper II

Measure calculation not following the selected filter

Hello,

 

I have two measure in my report which should follow the selected value in the page level filter. But for some reason its not working as expected. For example in the below visual eventhough I have selected 2023 it still shows the data for 2022. This only happens when I include the measures in my table visual.

newbie9292_0-1676492420622.png


I have few parameter inputs from the user (these parameter do not have any relationship with my data tables).
This is how my measures look

Scenario Category Measure =
VAR UserInputLow = VALUE(InputLow[InputLow Value])
VAR UserInputHigh = VALUE(InputHigh[InputHigh Value])
VAR SelectedYear = SELECTEDVALUE('dateTable'[Date].[Year])
VAR OGChance = CALCULATE(SUM('MyTable1'[Chance in %]), YEAR('MyTable1'[Datum]) = SelectedYear)
RETURN
    SWITCH(TRUE(),
        OGChance <= UserInputLow, "Low [<= " & UserInputLow & "%]",
        AND(OGChance > UserInputLow, OGChance < UserInputHigh), "Medium [>" & UserInputLow & "% & < " & UserInputHigh & "%]",
        OGChance >= UserInputHigh,  "High [>= " & UserInputHigh & "%]"
    )

Custom_Gewichtet_Betrag_chance =
VAR Betrag = SUM('MyTable1'[Betrag])
VAR SelectedYear = SELECTEDVALUE('dateTable'[Date].[Year])
VAR OGchance= CALCULATE(SUM('MyTable1'[Chance in %]), 'dateTable'[Date].[Year] = SelectedYear)
VAR ThresholdHigh = VALUE(InputHigh[InputHigh Value])
VAR ThresholdLow = VALUE(InputLow[InputLow Value])
VAR CustomHighChance = VALUE('Custom Chance High'[Custom Chance High Value])
VAR CustomMedChance = VALUE('Custom Med Chance'[Custom Med Chance Value])
VAR CustomLowChance = VALUE(Custom_Chance_Low[Custom_Chance Value])
RETURN
SWITCH(TRUE(),
  INT(OGchance) <= INT(ThresholdLow), CustomLowChance,
  INT(OGchance) >= INT(ThresholdHigh), CustomHighChance,
  INT(OGchance)>INT(ThresholdLow) && INT(OGchance)<INT(ThresholdHigh),CustomMedChance
)

So my final wish is to replace the original weights (Chance in %) with the user provided weights(CustomHigh,CustomLow etc.)
Can someone please help me?

3 REPLIES 3
newbie9292
Helper II
Helper II

Can someone please help me with this?
Would really appreciate any help.

MURTAZA
Resolver I
Resolver I

Could you confirm the cardinality between your date and fact table?

Hello @MURTAZA 
It's Many to One

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.