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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi,
I have my measure below which it accepts the dax okay.
Solved! Go to Solution.
Hi @lherbert501
The easiest fix would be to change
CONCATENATEX (
VALUES ( 'Parameter'[Parameter] ),
...
into
CONCATENATEX (
'Parameter',
...
Since there should be no duplicates in the 'Parameter'[Parameter] column, the result should be as intended.
Passing a field parameter column reference to VALUES suffers from the same underlying problem as passing one to SELECTEDVALUE.
Regards
@lherbert501 , is it possible to apply the same logic to column header?
Use a Function in Field Parameters Header - Microsoft Fabric Community
Hi @lherbert501
The easiest fix would be to change
CONCATENATEX (
VALUES ( 'Parameter'[Parameter] ),
...
into
CONCATENATEX (
'Parameter',
...
Since there should be no duplicates in the 'Parameter'[Parameter] column, the result should be as intended.
Passing a field parameter column reference to VALUES suffers from the same underlying problem as passing one to SELECTEDVALUE.
Regards
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 60 | |
| 53 | |
| 40 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 97 | |
| 81 | |
| 35 | |
| 29 | |
| 25 |