Forum Discussion

Matt22365's avatar
Matt22365
Resolver III
3 years ago
Solved

Parameter slider not working correctly

Hi all I hope someone can help I have created a currancy exchange rate parameter table to use in a measure to multiply cost values from another table. The measure works great but the parameter vis...
  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi Matt22365 

    Maybe you can refer to the following way

    1.Create the follwing table

    Table = ADDCOLUMNS(GENERATESERIES(0.5, 4, 0.0001),"Round",CONVERT(ROUNDDOWN([Value],4),STRING))

    2.Put the Round field of the table to the slicer, and change the slicer type to "Dropdown" and open the search function

     

    Then create a measure, you can use the measure to calculate

    Measure = ROUNDDOWN(CONVERT(SELECTEDVALUE('Table'[Round]),DOUBLE),4)

    Best Regards!

    Yolo Zhu

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