Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi
i have a created a parameter (called "choose measure" to switch between unit and cash) and it works for simple charts with no calculated field
the parameter looks like this:
but i also need to show a table (like below) with multiple columns of calculated field, i.e. YTD growth, MAT growth..etc, is there a way i can use this parameter to quickly switch between the measures?
i.e. formula for calculated LYTD units is like below, i tried write the "choose measure" parameter into the below forumla to replace "sum of retail units" but it doesn't seem to work
Solved! Go to Solution.
Hi @mogugu_84 ,
As far as I know, if you want to use Field parameter function, you need to add all measures you need in it instead of only add the column.
For example, you need create two measures [LYTD Retail Cash] and [LYTD Retail Units] for LYTD Retails, and the same for others like YTD Retail and FYTD Growth Retail.
I suggest you to add a calculated column in this parameter table.
Choose measure = IF(CONTAINSSTRING(Parameter[Parameter],"Cash"),"Retail Cash","Retail Units")
Then use this column to create a slicer. 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 @mogugu_84 ,
As far as I know, if you want to use Field parameter function, you need to add all measures you need in it instead of only add the column.
For example, you need create two measures [LYTD Retail Cash] and [LYTD Retail Units] for LYTD Retails, and the same for others like YTD Retail and FYTD Growth Retail.
I suggest you to add a calculated column in this parameter table.
Choose measure = IF(CONTAINSSTRING(Parameter[Parameter],"Cash"),"Retail Cash","Retail Units")
Then use this column to create a slicer. 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 @mogugu_84 ,
In most cases, we use field parameter to choose measures directly to plot a visual.
But in your case, it seems you expect to use field parameter further in measure definitions, which is a bit more complicated, check:
Hi, thank you, i tried to follow the example in your first link,
below is the example fields:
Revenue =
SWITCH(
SELECTEDVALUE(Revenue[Revenue Fields]),
"'Key mesaures'[Revenue with taxes]", [Revenue with taxes],
"'Key measures'[Revenue without taxes]", [Revenue without taxes]
)
example parameter table looks like this:
Revenue | Revenue Fields | Revenue Order |
Revenue with taxes | 'Key measures'[Revenue with taxes] | 0 |
Revenue without taxes | 'Key measures'[Revenue without taxes] | 1 |
here's my version,
my table of parameter
but the results says "argument "6" is required....
Thanks again Freeman, yes, that makes the formula tick, but sorry, the whole method still just doesn't work...
here's one of the formula for growth calculation
In the DAX use the paramenter insted of the direct column.
ex
CALCULATE(SUM('ParameterSwitch'[Parameter]),DATESYTD(dateadd('Calendar'[Date],-1,Year),"3/31"))
💌 If this helped, a Kudos 👍 or Solution mark would be great! 🎉
Cheers,
Kedar
Connect on LinkedIn
Hi Kedar, sorry, not sure i got this right, i tried copy your formula directly, it doesn't work
Also tried to replace it with my parameter name "choose measure", also doesn't calculate....