Hi,
I have 2 levels of data: Venues and Function Rooms.
I have a slice currently on Function rooms based on user data input (postcode of venue, function room capacity).
I would like to map the related venues that appear in the slice (with their detailed info) however at the moment if i do this i will get multiple pins at the same spot as there can be many function rooms in one venue as i map the function room slice.
What would be the best slice/formula/other thing to use for this?
Thanks in advance!
So you want only one pin per venue, regardless how many rooms within the venue are in use?
Create a slice on the venues table with a row filter expression that looks to see if the venue is in the current function room slice. For example:
IN([Function Room], Function Room Search[Function Room])
See also:
Hi Steve, Thanks for your response and yup thatโs the concept.
Iโve tried using the below on a Venues Slice and when I test, some venues that i know should be True, they appear as False.
in([Related Function Rooms],Function Rooms Filtered[ID])
Iโve tried with both the [ID] field and the label field [Room Name].
Iโm sorry if I seem a little denseโฆ
Try this instead:
in(any(Function Rooms Filtered[ID]), [Related Function Rooms])
well that kind of worksโฆ
it only shows me one venue rather than all venues matching the criteriaโฆ
sorry to ask for more help!
@Segolene_Sansom
What happens if you remove the โanyโ ?
figured it outโฆ had to inverse the 2 columns
in(any([Related Function Rooms]),Function Rooms Filtered[ID])
User | Count |
---|---|
18 | |
11 | |
11 | |
8 | |
4 |