コメント
-
To my knowledge, Domo doesn’t provide native, detailed tracking for changes to Dashboards and Cards. The version commentary feature for Data Flows is quite useful for tracking changes, but similar detailed tracking for Dashboards and Cards isn’t available. There are a few things to help you monitor changes to Dashboards…
-
You have defined four variables: P1_start, P1_end, P2_start, and P2_end. It appears that you have also made those into controls. Next, change the calculated fields so they make use of the variable instead of static values. Then, when the variables are changed on the controls panel, the values on the card will change…
-
Can you transform your data in an ETL? Apply a formula like Log(Value) or Value / Scaling Factor to adjust the bubble sizes. Create a calculated field to adjust the size values directly. A formula to scale down or normalize your values. For example, Size = [Original Size] / 1,000,000 to convert billions to millions.
-
@art_in_sky - did you get the answers you needed on the other question? Or is this still something you need us to review and respond to?
-
Even if you are the owner of the card, there might be specific permissions on the dashboard restricting edit. Card type could also affect it. For example, if I create a card with a blank brick, the edit may appear different than one that isn't on a brick. You may also try clearing your browser cache to make sure its not…
-
It's possible for the date format to differ when exporting data from a dataset to a CSV file in Domo, depending on the user’s settings or configurations. Locale Settings The date format in the CSV file can be influenced by the locale settings of the user's browser or operating system. Different locales have different…
-
There may be some kind of code issue occurring behind the scenes. Something we community users cannot identify for you. You should submit a ticket to Domo Support and provide them an example of one that is staying firm and one that is reverting. It may be that the parenthesis or something is causing an issue in the code…
-
Verify if the manual updates are being consistently saved. After saving, review and make sure you see (TRAINER). And make sure you have cleared the cache. Check for Overwrites Ensure that there are no processes or integrations that might be overwriting the manually updated names. Data Synchronization Confirm that there’s…
-
I think we need to see an example of how you are defining the names. I have never seen Domo change what I type in for name. Why not use "title" for trainer? Or some other field to define it?
-
I believe what @Sean_Tully is expressing is - to filter on something changing, the dates within an example like mine, would need to be a variable. You could take my example farther in defining period1_start_date, period1_end_date, period2_start_date, and period2_end_date. And then use them in the calculations.
-
There's several ways we could interpret the question. I think you are looking for something where your periods are static (firm, typed, defined). In this case my solution wouldn't incorporate "filters" as a drop down. Let's say we have a sample set: Date,Product,Amount 2024-01-01,Product A,10000.00 2024-01-05,Product…
-
Variables with dates can be complex. They might involved dynamic calculations or filtering the visual cannot do. Try using static dates to see if the visual loads correctly. There might be something ambiguous in the date parameters. The PowerPoint Add-In may have limitations in handling dynamic or complex date…
-
Also….review use of Coalesce() when dealing with null values.
-
You could use string functions to remove unwanted characters with formulas like CAST(REPLACE(REPLACE(`YourColumn`, '(', ''), ')', '') AS DECIMAL)
-
I don't know if there's a list. HTML links work in table cards, pivot table cards, html cards, and text cards. In charts line bar, line, etc you can have links like drill downs to other pages. You can also implement filters using html links. You may also be interested in using pfilters. Parameter filters let you link to…
-
Aggregation Context: If records are appearing multiple times, it might be due to the aggregation context. You need to ensure that the aggregation functions (SUM, ROUND, IFNULL, etc.) are correctly applied. This can often be a result of improper grouping in the dataset or the way the calculation is being performed. Data…
-
You could do a recursion to store values to an archive each week. Then poll the archive to identify changes.
-
Are both hosted on the same domain? The single sign-on state may not be shared across them. Do they share tokens or sessions? Auth0 may issue a token that needs to be recognized by both. Make sure that the SSO integration settings in DOMO are correctly set up to use Auth0 as the Identity Provider. DOMO should be configured…
-
Oh..and congrats to @Craig_Lynch on leveling up. 🏆️
-
Congratulations @nmizzell! Thanks for your help and participation.
-
I can't speak to what the limit might be. I have an app with around 30 cards on a single page (gauges, charts, brick, filters) and more on additional pages. It doesn't seem to care, and updates quite well. Some of the cards on my app share datasets, others on the same page pull from different data. Any that share a field…
-
If its survey data and anonymous, you may need a rule in there to account for groups smaller than X. If there are fewer than X, you aren't supposed to reveal the findings - something like that.
-
Yes, I see the same thing you do…a broken link.
-
I've only found it on the URL or via code (API). Here's a Domo reference for finding it on details. https://domo-support.domo.com/s/article/360043436533?language=en_US#:~:text=You%20can%20find%20the%20dataset,following%20%22%2Fdatasources%2F%22.
-
You can reset a password by going to More » Admin. Then edit the person and click the Change Password button.
-
Sorry, I did not see the first two sheets in the file. Hopefully some others will chime in. The following is just an idea, others may have better theories. Me……I would not attempt what I see in your spreadsheet. I did something like this a few years ago. My data was anonymized survey data for a large school district with…
-
Hey, that's terrific. You could also use a filter on that branch to limit what comes through that path.
-
Good question @Jarren. Expanding on what Grant suggested, you might be able to poll Domo via Python or other method. Something like this would give you a list of things affected by a rename. import requests import json # Replace with your Domo credentials and API endpoints client_id = 'YOUR_CLIENT_ID' client_secret =…
-
Correct, you see only what is produced by the Group By. But, you can either add fields to the group (if they match that "level"). Or, you can spawn a branch off that backbone, do something on the side branch, and then use a join to join new things back to your backbone. Edit…I said that slightly wrong. If you add a new…
-
Setup your data in a way that is structured to include columns for user scores and direct reports. Leader View Score Direct Report 1 Direct Report 2 Direct Report 3 Regan Regan's View 85.8% Rosy Suzy Rosy Rosy's View 80.3% Paul Jhonny Paul Paul's View 93.8% Josh Kate Jhonny Jhonny's View 86.0% Jackie Linda Tyson Suzy…