Filter at Dashboard

Hi guyโ€™s
I need to do one filter at dashboard, but i cant do it to work.

I need to put some dropdowns to filter what i want to show like this:

The main table is โ€œFechadosโ€

and i create another table โ€œProblemasโ€

At table problemas i create one column with name โ€œProblemaโ€ there is the same column at main table.
and i set this column as ref.

What i doing wrong.

Solved Solved
0 18 648
1 ACCEPTED SOLUTION

Tryโ€ฆ
ANY(Filter[problemas])

But you still need to solve the per user situationโ€ฆ
How many people will be using this?

View solution in original post

18 REPLIES 18

Try setting the view for problema to a table. And turning on there interactive dashboard.

I already did it,but not work. nothing change

That view in the right isnโ€™t a list. It looks like a detail view with quick edit?

yes.

What i have:
2 tables - Fechados and Problemas
In table problemas i put all possible values from column Problema at table fechados




I think i see the issue.
Mark problema as the key and the label.
(Iโ€™m hoping you donโ€™t have any duplicates)

But whe i put problema as key, i cant create a detail view with this column with quick edit, to select what i want.

I donโ€™t understand what your trying to do?
What is your end goal, how do your users interact with this data?

Your data currently appears to be a list of Fechados, with a complete duplication of the problemas into another tableโ€ฆ the problema field in fechados is simply a text field, not an enumโ€ฆ I quite literally can not make sense of your end goal.

If you try what I said you will end up with an interactive dashboard, which I think you may find neat.

If you want a detail view with a dropdown, then each user would need their own detail view, so now you will need to create a user table, with โ€œproblemaโ€ as an option. Then use a security filter to only show the users their single user record in which they can choose from a drop down the problema. That dropdown would need to have a list built in the valid_if section of the available problemasโ€ฆ Then you would need to create a slice of the Fechados table with expressions looking toward the single user record. (Itโ€™s an awful lot of work, I do it often. But without understanding exactly what youโ€™re trying to do, and the way your users would interact with this I was hesitant to recommend this approach.)

I tried to explain in this image:

The view on the left should be atop a slice. The slice should have a row filter that uses the column values of the row being updated by the view on the right.

I found a video at youtube, and i want to do exactly what is there.

using Slice with row filter i can do it?

Yes.

I changed the second table name to Filtro instead Problemas.
i Create an slice from first table Fechados and add this formula condition:

But nothing change when i use dropdown

Tryโ€ฆ
ANY(Filter[problemas])

But you still need to solve the per user situationโ€ฆ
How many people will be using this?

Ty Grant!!!
its work.

4 users will use it.

Now i need to create another column with useremail to separate them, right?

Yes.
Then you can use a security filter.
[Id]= USEREMAIL()
and you shouldnโ€™t even have to do much else.

One more thingโ€ฆ In Fechados the problema column needs to be marked as a REF back to the problema table.

Then you should have a list/table view of problemaโ€ฆ And a list view of Fechadosโ€ฆ When you select a problema the Fechados list should filter down for you.

Hi guys, i have one more problem with this filter:

Now itโ€™s working with this Row filter condition:

AND([problema]=ANY(Filtro[problemas]),
[corredor]=ANY(Filtro[corredor]),
[estacao]=ANY(Filtro[estacao])
)

But if i set only one filter condition, itโ€™s not work.


and i need to work if i set only one too.

Its possible to do it?
i tried to change the condition โ€œANDโ€ to โ€œORโ€ but doenโ€™t worked.

Top Labels in this Space