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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
anushkavp27
Frequent Visitor

Multiplying a value from parameter to a column

Hello, 

 

I have a parameter value: 

New Slider: GENERATESERIES(0, 1, 0.05)

 

and then I have a measure: 

New Slider Value = SELECTEDVALUE('New Slider'[New Slider])
 
 anushkavp27_0-1711484647502.png

 

This is something that the user can slide through. 

 

I want to take this value and multiply it with a static column value: 

anushkavp27_1-1711484734947.png

In thsi case, I want to multiply the value of the slider that was selected by the user with the Average Forecast column. So multiplied value = (36.77 * 0.8) , (37.00 * 0.8) and so on.

 

I understand that using a measure is the correct way of doing it, but I dont want to aggregate anything or use SUM expression. I want a simple multiplication of the average forecast and the value selected by the user. 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @anushkavp27 ,

I have created a simple sample, please refer to my pbix file.

Create a measure.

Measure = var _1= SELECTEDVALUE(Parameter[Parameter])
return 
_1*MAX('Table'[value])

vrongtiepmsft_0-1711676784622.pngvrongtiepmsft_1-1711676803976.png

 

How to Get Your Question Answered Quickly - Microsoft Fabric Community

 

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

 

Best Regards
Community Support Team _ Rongtie

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

 

 

 

 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @anushkavp27 ,

I have created a simple sample, please refer to my pbix file.

Create a measure.

Measure = var _1= SELECTEDVALUE(Parameter[Parameter])
return 
_1*MAX('Table'[value])

vrongtiepmsft_0-1711676784622.pngvrongtiepmsft_1-1711676803976.png

 

How to Get Your Question Answered Quickly - Microsoft Fabric Community

 

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

 

Best Regards
Community Support Team _ Rongtie

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

 

 

 

 

vicky_
Super User
Super User

Is average forecase a measure already? if so, then you can simply use a measure -

Multiplied Value = [Average Forecast] * SELECTEDVALUE('New Slider'[New Slider])

 

if it's not a measure, then:

Multiplied Value = SELECTEDVALUE('Table'[Average Forecast]) * SELECTEDVALUE('New Slider'[New Slider])

Average forecast is not a measure. So, I tried the above command you gave, but it does not return anything. It gives all blank results. 

anushkavp27_0-1711494173765.png

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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.

Top Solution Authors
Top Kudoed Authors