Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. 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
User | Count |
---|---|
84 | |
76 | |
74 | |
48 | |
39 |
User | Count |
---|---|
114 | |
56 | |
51 | |
42 | |
42 |