Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi All,
I have a requirement to display the Project Name and Client Name as per the selected project in the slicer.
Example: in the page i have only one project name slicer and two card,one for the project name and one for the clinet name .So when ever the person slected project name in the slicer the slected project name needs to be disply in the project name card and with respected client name for the project needs to be displyed in the Client Name Card
for the project name displying i am using the below dax
Solved! Go to Solution.
Hi @Anonymous ,
Please try the following measure:
project name meaure =
IF (
ISFILTERED ( 'Table'[Project Name] ),
SELECTEDVALUE ( 'Table'[Project Name] ),
"All the project"
)
Client name meaure =
IF (
ISFILTERED ( 'Table'[Project Name] ),
CALCULATE (
MAX ( 'Table'[Project Name] ),
FILTER (
ALL ( 'Table' ),
'Table'[Project Name] = SELECTEDVALUE ( 'Table'[Project Name] )
)
),
"All the client"
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
@Anonymous , Not very clear.
Try like
max('Table'[Client Name])
or
concatenatex(Table,'Table'[Client Name])
@Anonymous ,
Check with the below DAX.
SWITCH(TRUE(),SELECTEDVALUE('Table'[Project Name]),Distinct('Table'[Client Name]),"No value selected Slicer ")
On card we can pass only single value. So whenver nothing is slected on slicre you can show "No value selected Slicer "
If you find this is helpful Please Accept as a Solution and leave a like.
Regards,
Manikumar
Proud to be a Super User!
Hi Mani kumar,
Thanks for the quick replay
but the given dax is not giving the results,it showing the below error.
Thanks!!
Nagaraju
Hi @Anonymous ,
Please try the following measure:
project name meaure =
IF (
ISFILTERED ( 'Table'[Project Name] ),
SELECTEDVALUE ( 'Table'[Project Name] ),
"All the project"
)
Client name meaure =
IF (
ISFILTERED ( 'Table'[Project Name] ),
CALCULATE (
MAX ( 'Table'[Project Name] ),
FILTER (
ALL ( 'Table' ),
'Table'[Project Name] = SELECTEDVALUE ( 'Table'[Project Name] )
)
),
"All the client"
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
121 | |
88 | |
79 | |
61 | |
58 |
User | Count |
---|---|
129 | |
114 | |
97 | |
73 | |
71 |