The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
Can different "what if parameters" be arranged in a column , to have dynamic values
Thanks,
Yogi
Solved! Go to Solution.
Hi @yogeshmaney ,
We can try to create a calculated table and a measure to meet your requirement:
Calculated table:
ParameterName = {"Item1","Item2","Item3"}
Measure:
ParameterValue = SWITCH(SELECTEDVALUE('ParameterName'[Value]),"Item1",[Item1 Value],"Item2",[Item2 Value],"Item3",[Item3 Value])
If it doesn't meet your requirement, kindly share your sample data and expected result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.
Best regards,
Item | Parameter Value |
Item A | Parameter 1 |
Item B | Paramenter 2 |
Item C | Parameter |
Have Created 3 What if parameters, Now Want to arrange /list them in a column , so to have dynamic values for Items.
How can we do this
Thanks,
Hi @yogeshmaney ,
We can try to create a calculated table and a measure to meet your requirement:
Calculated table:
ParameterName = {"Item1","Item2","Item3"}
Measure:
ParameterValue = SWITCH(SELECTEDVALUE('ParameterName'[Value]),"Item1",[Item1 Value],"Item2",[Item2 Value],"Item3",[Item3 Value])
If it doesn't meet your requirement, kindly share your sample data and expected result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.
Best regards,
Hello ,
Its nice but do we get Total .
But its awesome.
Thanks,
Yogi
Hi @yogeshmaney ,
We can use the following measure to correct total value:
ParameterValue = SUMX(DISTINCT('ParameterName'[Value]),SWITCH([Value],"Item1",[Item1 Value],"Item2",[Item2 Value],"Item3",[Item3 Value]))
Best regards,
Simply Awesome ! No words !