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 August 31st. Request your voucher.
Hi all,
I have like 50 scenarios, each of which has multiple parameters, and I want to create a measure, that I first select a scenario as base case, and choose which value I want to compare, and generate a visual. I have created 3 tables, Base case table for a base case slicer, value table contains the values of each parameter of each case, parameter table for a parameter slicer.
The tables I have have a structure like below:
Base case table
Case 1 |
Case 2 |
Case 3 |
Case 4 |
Value table, For each case, it has a table of all kinds of parameters with values
parameter 1 | parameter 2 | parameter 3 |
3 | 5 | 7 |
4 | 6 | 8 |
Parameter table
parameter 1 |
parameter 2 |
parameter 3 |
parameter 4 |
I have manually did a meausure for a specific parameter like this:
Above code works for a specific parameter "Total Tonnes", but I want to have something that can dynamically change as I choose different parameters.
I tried this, basically I want the SUM function SUM('Input Files'[parameter]), call the parameter slicer, but it does not work.
Would you please help out?
Thank you.