コメント
-
I would reach out to Domo Support. Everything I see here looks correct.
-
You would have to do a JOIN. If you share the contents of Transform 1 and 2 I can help you write it.
-
Apps and Users is not currently an available Domostats or Domo Governance report. @nathankilcrease on my team was able to build a custom report to pull all users that apps are shared with, which allows me to get a list of emails to copy and paste and do exactly what you are trying to do. @nathankilcrease could you share…
-
It is working for me for both card and dataset alerts. Some things you might check: 1. You own the project 2. You are selecting the correct project in the alert 3. Your alert is triggering
-
This is a fantastic idea. I rarely use that section and hiding it would be super nice.
-
You can explore the Domostats and Domo Goverance reports via the Appstore. These connectors give you access to a ton of reports with data about your Domo instance. Explore them and see if you can find what you need! If you can't, your next option would be to hit Domo APIs, many of which are undocumented.
-
Not seeing that issue. Has it resolved for you? Also, are you getting the error if you navigate to the connector through Data > Connect Data > Connectors?
-
Ah gotcha, I reread your original question and you'll want to use Inline Editor for that:
-
You can edit the brick to display text by updating the HTML and CSS: HTML: <div id="myDiv"> <h1>custom closed message</h1></div> CSS: #myDiv { display: flex; align-items: center; justify-content: center; background: rgb(131,58,180); background: linear-gradient(90deg, rgba(121,64,161,1) 0%, rgba(228,88,80,1) 50%,…
-
You can use the table element in an App Studio app page:
-
@ArborRose thank you and yes please let me know! @DavidChurchman you won't be able to concat and recreate the field for user role changes, which is my need. In the Admin section Activity Log, I can see "Colemen Wilson changed John Does role from Social to Admin" That is the data I need to surface in a dataset.
-
Do you have an activity log report using the Domo Governance Datasets Connector in your instance?
-
@ArborRose Is this what you mean? If so, no Activity Log is not an available report.
-
The 710 number is within some time period, I can't remember what it is, but it IS NOT all time. Correction: This documentation says that it is since card creation: But above that section in the same documentation, the image shows views in last 30 days So not sure when that changed and if it is all time or some other…
-
Could you share more information on what you are trying to filter? In Magic ETL, the filter tile gives two options: 1. Add Filter Rule: user friendly option that allows you to click and select how you want to filter the data 2. Add Formula Rule: This is my preferred option, as it allows for using SQL to filter your data.…
-
They should be the same. While you can make changes to how some elements in an app is viewed on mobile vs. desktop, tab order isn't one of them. Sounds like a bug and I would recommend submitting a support case to Domo.
-
That is not an error, only a warning. However, I do see that you need to update the beastmode to use your Total field and your Date field. Is your data aggregated at the level you first shared? If not, you will need to first aggregate or use a group by.
-
No you just need the current month. The previous month is derived in the lag function. However, `Previous Value` is what I named the beastmode in step 2. In steps 3 and 4 I use a nested beastmode that references the beastmode called `Previous Value` created in step 2.
-
You can use a lag function. Final result: Step 1: Your data must have some field that orders the data. Month alone won't work, you have to have a numeric or date field. I've added dates to your sample data. Step 2: Create a beastmode that is the Previous Value: LAG(Total) OVER (ORDER BY Date) Step 3: Create a beastmode to…
-
SELECT MIN(`Create Date`) as 'Member Origination Date' MAX(`End Date`) as 'Member Termination Date' FROM yourData GROUP BY(`Member ID`) Then in your card you filter out anyone who has a Member Termination Date in the past to show only current members.
-
With the latest version of the plug in, you can import multiple cards at once, but they are imported 1 card per slide. You can however, adjust the image resolution of the imported cards to be higher resolution. This should allow you to have multiple cards per slide that are readable.
-
It shouldn't matter since you are using the Google Sheets connector. I would recommend reaching out to Domo Support.
-
I am seeing it, here is where it is located now. Not sure when the video you watched was recorded, but it may have just moved around.
-
Some good ideas exchange ideas related to smart text that I'd recommend upvoting: https://community-forums.domo.com/main/discussion/56197/variables-smart-text-chart-axis-legends
-
Short answer is no. Long answer is smart text doesn't show up in a lot of places: Scheduled Reports Powerpoint exports When searching for content in Domo and more It really only shows up in the card, on dashboards and on apps. I would recommend making this a feature request in the
-
A couple of options: 1. Utilize the card description. This is what we use to explain each card in detail on my team. It doesn't require any extra clicking and is right above the chart, which leads to a greater likelihood of it actually being read by users. 2. Change the card action for the card on a dashboard or app.…
-
Admin > Dashboards > Select the dashboard > EDIT > Move Dashboard > Choose Location > Top Level Dashboard > Choose Permissions > Move Dashboard
-
You can create copies of datasets and dataflows: With the copies you could then swap them out in the ETLs/views. Does that accomplish what you are trying to do?
-
Use case is when you want to edit the schema of a dataset. Here are the steps to use the tile: Drag the Schema tile onto the canvas and connect it to an input. This surfaces the schema as a table with the Column Names, Expressions, and Data Types of the input. Connect the Schema tile to other Magic tiles like the Formula,…
-
Assuming your Widgets field is numeric: SUM(CASE WHEN `WidgetColor` = 'Purple' THEN `Widgets` ELSE 0 END) / SUM(`Widgets`)