Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I’m having a issue with returning a value from a Numeric Range slicer
Initally it is returning the correct value , but when used later on it is returning the default value not the selected value
But when I use in another measure as a calculation it retunes the default value of the slicer, which in this case is 35,
The initial Measure is
Efficiency - Seminars Value = SELECTEDVALUE('Efficiency - Seminars'[Efficiency - Seminars], 35)
Returns 70, correct as the slicer is set to 70
I tried a using it in a basic measure in the table I wish to do the calculation such as (simplified for this message)
Efficiency = 'Efficiency - Seminars'[Efficiency - Seminars Value]
But returns 35, it should be 70
What have I done wrong
(I have 5 slicers and some screen shots don’t match)
Final equation is, ut it jusk keep returning 35
Efficiency = IF([Space Type] = "Studios", 'Efficiency - Studio'[Efficiency - Studio]/100,
IF([Space Type] = "Lectures", 'Efficiency - Lectures'[Efficiency - Lectures Values]/100,
IF([Space Type] = "Seminars", 'Efficiency - Seminars'[Efficiency - Seminars Value]/100,
IF([Space Type] = "Technical Workshops", 'Efficiency - Technical'[Efficiency - Technical Value]/100,
IF([Space Type] = "Tutorial", 'Efficiency - Tutorial'[Efficiency - Tutorial Value]/100,
0)))))
To be used in the following evaluatopm
Efficient Hours Per Week = IF(ISBLANK('SpaceData (Excel)'[Capacity]),0,('SpaceData (Excel)'[Capacity] * 40)* 'SpaceData (Excel)'[Efficiency]
Solved! Go to Solution.
It looks like you're trying to use it in a calculated column, but that won't work. Columns are only calculated during load or refresh, so they don't pay any attention to slicers or filters in a report.
If you want something to respond dynamically to slicers you will need to use a measure rather than a calculated column.
It looks like you're trying to use it in a calculated column, but that won't work. Columns are only calculated during load or refresh, so they don't pay any attention to slicers or filters in a report.
If you want something to respond dynamically to slicers you will need to use a measure rather than a calculated column.
 
					
				
				
			
		
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
 
            | User | Count | 
|---|---|
| 80 | |
| 49 | |
| 35 | |
| 31 | |
| 30 |