The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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.