The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
I would like to create slicer to switch between different RAG notes, rather than having to create separate visuals from them all:
Data is as follows (Projects Main):
Date | Project Code | Overall Notes | Budget Notes | Delivery Notes |
Jan-21 | 123 | No issues | Budget has no issues | Delivery is on track |
Jan-21 | 543 | Delivery at risk due to No UI resource | No Budget Issues | Still looking for a devloper to complete the UI |
Jan-21 | 999 | Scope increased with Budgetary concerns | Scope has been increased which has caused for us to now re-budget | Current scope deilvery on time, although at risk due to scope increase |
Feb-21 | 123 | No overall issues | No issues | No issues |
Feb-21 | 543 | UI person has been recruited, looking to pull back timelines on delivery | None | UI person is now onboard and looking to pull delivery to original timelines |
Feb-21 | 999 | None | None | None |
I have created a static table that just lists the following (Latest Notes):
RAG Note Type:
Overall Notes
Budget Notes
Delivery Notes
Depending on the date selected on the top page filter, i would like to return the notes aligned to that period.
For instance if i had selected Jan-21 in the report filter and Project 123 then i would expect to see all Jan-21 Notes related to this project - but switchable using the slicer as shown in the attachment.
I created measures for each of the notes:
Budget Notes = Calculate (Max('Projects Main'[budgetnotes]))
Delivery Notes = Calculate (Max('Projects Main'[deliverynotes]))
Overall Notes = Calculate (Max('Projects Main'[overallnotes]))
I then created a calculated column:
Slicer Selection =
If( ISCROSSFILTERED('Latest Notes'[RAG Note Type]),
SWITCH(SELECTEDVALUE ('Latest Notes'[RAG Note Type]),
"Budget", [Budget Notes],
"Delivery", [Delivery Notes],
"Overall", [Overall Notes])
)
I then added the slicer selection into a field on a text visual - however it doesnt return what i expect.
Any help would be appreaciated
Solved! Go to Solution.
I have resolved it -
Slicer Selection =
If( ISCROSSFILTERED('Latest Notes'[RAG Note Type]),
SWITCH(SELECTEDVALUE ('Latest Notes'[RAG Note Type]),
"Budget Notes", [Budget Notes],
"Delivery Notes", [Delivery Notes],
"Overall Notes", [Overall Notes])
)
I have resolved it -
Slicer Selection =
If( ISCROSSFILTERED('Latest Notes'[RAG Note Type]),
SWITCH(SELECTEDVALUE ('Latest Notes'[RAG Note Type]),
"Budget Notes", [Budget Notes],
"Delivery Notes", [Delivery Notes],
"Overall Notes", [Overall Notes])
)
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
111 | |
79 | |
71 | |
48 | |
41 |
User | Count |
---|---|
138 | |
108 | |
71 | |
64 | |
58 |