コメント
-
I'd start by talking to your Account Executive.
-
Domo CLI tool has a command called swap-ower which allows you to reassign different object types. swap-owner: Transfers ownership of Alerts, Cards, Groups, Pages, Reports, DataSets, and DataFlows from one user to another. This command changes ALL objects (of the specified type/s) which belong to a user. Note: -nt and -ot…
-
Currently no, I don't believe animated GIFs are supported.
-
Yes, I use pydomo for a lot of scripts and it works well. There are two update methods, data sets and streams. You can use streams to upload data in segments and finally commit the stream when it's done which are better for larger datasets. Overall yes, I'd recommend pydomo in your use case as it'll help streamline your…
-
The text box returns the first record it finds. Since your beast mode is returning just the ID in the ELSE clause you get the first ID. Remove the ELSE clause from your case statement and then filter your text card so that the value is not null.
-
You can use the Java CLI to 'get-certified-content' that includes both datasets and cards. From there, you would import that data as a new dataset and then join that data up with Domo Governance or DomoStats datasets.
-
You need the actual server host name and connection information as domo doesn’t know about your RDS configuration
-
Have you thought about splitting your metrics into different tables for visualization instead of putting in a blank line? As @MichelleH mentioned they only way is to add rows to your dataset
-
What do the raw numbers look like and what is the date they get translated to? I’m wondering if it’s assuming they’re Unix timestamps and you can convert them back to Numbers by using the TO_UNIXTIME function in a formula tile
-
Have you been able to look over the network traffic with the developer tools on Chrome? This will typically show you any connection or network errors that may prevent the iframe from loading correctly.
-
rdomo doesn't support defining the dataset's schema when you upload it. It attempts to determine the schema automatically. With your numbers it fails the first two checks where it's looking for a specific date format however the third check attempts to conver the number to a date which succeeds so it assumes it's a date.…
-
rdomo doesn't support defining the dataset's schema when you upload it. It attempts to determine the schema automatically. With your numbers it fails the first two checks where it's looking for a specific date format however the third check attempts to conver the number to a date which succeeds so it assumes it's a date.…
-
Awesome work @jessdoe !
-
Look into using FIXED functions in a beast mode with the FILTER NONE option to prevent filtering from being applied https://domo-support.domo.com/s/article/4408174643607?language=en_US
-
You’ll need a dataset with each metric and definition. You can then use a filter dropdown card to allow the selection of a specific metric. You can then use a table card to display the metric and definition after it’s been filtered
-
Domo has documentation on creating custom connectors in their developer portal. You can reference it here: https://developer.domo.com/portal/5d8f965eb3469-overview
-
Do you have something in the data label box at the top of those settings? If it's blank it won't display anything, you can use a magic keyword to return the total and then show where you want it displayed on.
-
You can use the split columns tile in magic ETL or utilize a formula tile with a regexp_replace or split_part function depending on how your field is formatted. Do you have an example of what your data looks like?
-
Domo doesn't expose that information in the api.domo.com dataset endpoints. You could attempt to get the api call the dataset page is using and use that to get the data you need but it's a more technical route and it's supported by Domo.
-
Have you looked into utilizing color rules so that if it's < 0 it's green and > 0 it's red? https://domo-support.domo.com/s/article/360043428813?language=en_US
-
You can install other libraries in your workspaces. It's documented here: https://domo-support.domo.com/s/article/36004740075?language=en_US#installing_libraries
-
You could use magic ETL and a regular expression to format your data and then split it. SPLIT_PART(REGEXP_REPLACE(`Parent Lead Source`, '([a-z])([A-Z])', '$1::$2'), '::', 1) This will find the occurrence where a lowercase letter precedes an uppercase character and then injects '::' between them to be able to split it apart…
-
There may be a beta available that could allow you to change ownership of accounts, but you'd need to speak to your CSM about it.
-
https://community-forums.domo.com/main/discussion/comment/83254#Comment_83254 No, it will only pull in the data that was updated based on the update timestamp from your database thus reducing the amount of data pulled in and processed. If you're wanting to remove old data then you can look into partitioning as…
-
Does your javascript have code to handle the button click even trigger?
-
Where are you getting your data from? An actual dataset you're passing to mapbox or are you using a mapbox dataset that is stored in mapbox that you pull in?
-
Do you have a created or updated timestamp in your dataset? You can use variables to only get the updated or created records based on when the workbench job last ran. You can read about lastvalue here: https://domo-support.domo.com/s/article/4407020836887?language=en_US
-
The issue is you're attempting to aggregate an aggregate, which you can't do within a Beast Mode; you'd need to pre-aggregate your data in an ETL before attempting to aggregate it in a Beast Mode.
-
For additional clarity, DDX Bricks are pre-built custom domo apps. The dataset mappings are defined within the manifest file when the app is built so you're not able to make changes to the mappings. As @michiko mentioned you can use a different DDX brick with just a single dataset mapped to it or as @MarkSnodgrass…
-
When I'm dealing with beast mode logic issues I'll typically break out each part of the beast mode into separate beast modes and use a table chart to see which parts match and which do not to see if there's an issue with the logic.
