Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hii team , I want to increase note price 10% and calculator 8%, how to use 2 parameter in one table / matrix
If I change price 10% its apply to all product
Solved! Go to Solution.
Hi @rajasekar_o ,
Please try measure as below.
if amt = CALCULATE(SUM('Table'[AMT]))* (1 + SELECTEDVALUE(Parameter[Parameter])/100)
if price = CALCULATE(SUM('Table'[UNITPRIC]))* (1 + SELECTEDVALUE(Parameter[Parameter])/100)
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @rajasekar_o ,
Please try measure as below.
if amt = CALCULATE(SUM('Table'[AMT]))* (1 + SELECTEDVALUE(Parameter[Parameter])/100)
if price = CALCULATE(SUM('Table'[UNITPRIC]))* (1 + SELECTEDVALUE(Parameter[Parameter])/100)
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.