The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I want to store my slicer selection and then display them as a lable/textbox.
The table example is:
Project ID | Organisation |
1 | A |
2 | B |
3 | C |
4 | A |
The slicer is based on project ID, so If I select 1,3,4, I would like the lable to read A,C,A
Is this possible?
Thank you
Solved! Go to Solution.
Hello @Fali324,
Can you please try this DAX then add to a Card or Textbox:
SelectedOrganisations =
CONCATENATEX(
VALUES(Project[Organisation]),
Project[Organisation],
", "
)
Should you require any questions or further assistance, please do not hesitate to reach out to me.
Hello @Fali324,
Can you please try this DAX then add to a Card or Textbox:
SelectedOrganisations =
CONCATENATEX(
VALUES(Project[Organisation]),
Project[Organisation],
", "
)
Should you require any questions or further assistance, please do not hesitate to reach out to me.