"Nested" filters within Domo - domo

I'm trying to use a "nested" filter with a domo dashboard.
I want to input some values into a chart on domo, and then use the associated outputs as inputs in the next chart on a domo dashboard.
Ex: I have a bunch of data on search terms on a website and advertisements/products that are served for each of those search terms. Lets say you type in "Computers" and it shows that Apple, Google, Dell, and Microsoft where all advertised for the word "Computers".
I then want to take the output of that first chart (Apple, Google, Dell, and Microsoft) and then show every other search term that any of them are associated with. I.e. then show search terms like "phones" would show Google/Apple, "spreadsheets" would show Google/Microsoft, etc...
Is this possible? Essentially trying to use the output of one chart on a dashboard as input to a second chart.
Thanks

Related

Why does my filter not work once published to Tableau Public?

I currently have a filter with a hierarchy on Tableau, so the option chosen on filter A determines what values I see on filter B. I also have specified for filter A to only "show relevant values," so that I only see options that contain data. This works perfectly on the worksheet, on the dashboard, and in the story, but when I publish to Tableau public, filter A shows all values, instead of only "relevant values." The hierarchy between filters A and B continue to work as intended, only filter A seems to change.
Has anybody had this problem or have a suggestion?
I have tried to delete the story point, delete the filters, and start from zero, but that has not worked. I continue to have the same problem.

Share kusto variables between grafana panels

Well, let's say that I have the query from my previous question: How to do multi graph time series on Grafana with Kusto
Then I'd like to consume the tiemposCicloBruto variable from one panel to another in order to avoid repeating queries.
I saw: https://grafana.com/blog/2020/10/14/learn-grafana-share-query-results-between-panels-to-reduce-load-time/
But there isn't any way to share variables at all...
I also tried it as a dashboard variable, but it doesn't seem to support tabular expressions at all...
You can share only input variables across dashboard panels. Variables work as primitive text substitution in one direction (from dashboard to query), and do not take into account any context in your query language.
Your link tells about sharing results of the query between different panels. If exact same result set returned to a panel fits your needs, you can reuse it "for free", without putting load on the database. You don't need to save it into any variable, you just set it as a pseudo-datasource and you get the result immediately.
You can factor this feature into design of you panels. Examples could be:
time series plus histogram visualizations of the same data;
time-series chart plus a panel with latest readings (or use other Grafana reduce expressions).

Grafana - InfluxDB - SUM multiple series

I try to sumerize my powerusage metrics from my smart plugs. They are present at influxdb in different series. I've tried to use wildcard in the "from"-Part by i cannot sumerize the results?! Is it even possible to add the different series and get a single result? I do not want to make 4 (or more) manual series, each for one plug to be flexible if new plugs comes to the system. Fyi, i've already tried a "sum" at the select statement
I found a solution. Don't know why i did not tried this before. I add the transformation called "Add field from calculation" with mode set to "Reduce now" and calculation "Total".

Powershell AD tool

Basically, I've created a 400+ and growing AD tool with a GUI. I've given them the option to search using many filters with get-aduser and wild cards fill the rest. This company is large so when I search for a common name like kyle or john, it takes along time to pull the information because the search was not specific.
Is there a way to stop them from doing such a general search or limit the number of entries can be in an array, or stop the search if there's too much information.
Edit: I have a solution using a variable to count wild cards but that only works if the form is completely blank. If i set the number any different they won't be able to look someone up by ID number

SSRS Multiple parameters in single drop-down

I have a feeling I am probably out of luck on this one, but Is it possible to have more than one parameter in a single drop-down list on an SSRS report? For example, the drop-down could be titled shape/color, and when opened, the top of the list shows shapes, and one can be checked, then below that in the same list, is a list of colors, where one can also be checked. Possible at all?
It is really best to have separate drop-downs for each attribute, but within a single drop-down you would first set it to "Allow multiple values". You can setup your drop-down to be formatted so that the sections of available values are grouped together. Finally, you'll need to add a query or function to check that valid combinations were selected before trying to display the results. In other words, make sure only one shape was selected. You can set an error message with a visibility that toggles based on the selection. This is one method to do what you are looking for, but if you are new to SSRS, you will probably have more specific questions along the way. Once you have more details on a specific step, you can get help with that.