Comments
-
I haven't worked with this before but I believe you can do things like you need using the Governance Toolkit > PDP Automation. Where you configure something like: user_email | attribute_name | attribute_value -------------------|----------------|------------------ user1@company .com | DMA | FL user2@company .com | DMA |…
-
I don't think you can remove the Zoom In/Out buttons. That's a default behavior by Domo. You could try to resize or reposition the chart elements to avoid the overlap. Or possibly link to a dedicated page where card #2 is displayed without the zoom. Sounds like a good feature to request in the Ideas Exchange…disable the…
-
Terrific!
-
Yes, that's correct. There is not a selection for individual. But you can create a group with just your account.
-
On the page you referenced, there's an AI assistant to answer your question. Here is Marie's answer: To enable the new UI, your Domo admin should go to the Admin settings, look for the UI or Experience section, and check for options to enable the new interface for the whole instance or specific groups. If you don‘t see…
-
You cannot call public.domo.com/api/ using: OAuth Session tokens Your normal Domo developer client ID/secret Those endpoints only accept an Embed Token, because public.domo.com/api/ is the domain used for privately embedded content. I think youo need to generate a token using your embed secret then include it in the…
-
Nicely done @ellibot. 👏
-
Do you use Python? EMBED_URL = "https://your-embedded-domo-url" def check_domo_embed(): with sync_playwright() as p: browser = p.chromium.launch(headless=True) context = browser.new_context() errors = [] # Capture failed network requests def on_response(response): if response.status != 200: errors.append(f"{response.url}…
-
Raw Data Example - multiple rows per month and a few dimensions (columns). Month Region Store Salesperson Revenue Jan West Store A Sam 1,000 Jan West Store A Kim 1,200 Jan West Store B Pat 900 Feb West Store A Sam 1,400 Feb West Store A Kim 1,000 Feb West Store B Pat 1,100 Aggregation Example: Monthly Revenue by Store…
-
When you use GROUP BY, every field you include causes the data to break into smaller chunks. Group by Year → you get one row per year Add Month → now you get one row per year and month So the more fields you add, the more the data splits. Because of that, a SUM or AVG at the monthly level is not the same as a SUM or AVG at…
-
Are you in a Group By tile or a formula tile? That looks like a formula tile.
-
Sorry, that last statement didn't make much sense. For date range, you would use something like start date or completed date, and set a date range based on one or both fields.
-
I don't know Wrike, but there are reference pages out there to review: https://help.wrike.com/hc/en-us/articles/210323245-Subitems-in-Wrike lol…I couldn't get that to paste properly so I stuck it in a code block. It looks like the connector requires you to select a report type like Tasks, Comments, etc. And you configure…
-
You have a formula for MTD % of Sales, be sure you have the proper scope. Your field is account, not class. SUM(`MTD`) / SUM(CASE WHEN `Account` = 'Sales' THEN `MTD` ELSE 0 END) FIXED () Create a Pie Chart Using Beast Mode Instead of using MTD as the slice value, use your Beast Mode: Chart Type: Pie or Donut Slice Name:…
-
Domo handles RANK() after aggregation. This can cause issues with things like pivot tables. Create a table that shows: Top N (e.g., Top 10) customer clusters by current year sales Others (everything outside Top N) Grand Total Start with your dataset with customer_cluster, calendar year, sum net sales. Then use a Group By…
-
As @ColemenWilson mentions, it appears fixed. I do not get the error.
-
Not really….except that you might have a NULL or zero denominator. What I do is stick a DEBUG output tile into the flow. After your GroupBy tile, branch off to the side an output tile and give it a name like DEBUG1. Run the process and check the data in the DEBUG1 output dataset. Review your values for Total Expenses and…
-
We can't see the end of the formula. SUM(CASE WHEN condition THEN value ELSE value END) So it would be SUM(CASE WHEN `Account` IN ('EE Salaries and Benefits', 'OD Salaries and Benefits', 'Supplies') THEN `Amount` ELSE 0 END) Without the THEN value in there, there is nothing for the SUM() to act on. Edit…and whatever that…
-
Aggregations (Group By) are essential. You are grouping "like" things to sum them up, count them, average, etc. Consider a sample: Salesperson Region Amount Alice East 100 Bob West 200 Alice East 150 Bob West 300 Now you want to know how much each salesperson sold in total. Aggregation means doing math across rows — like…
-
SUM() is an aggregation function and the Magic ETL formula tiles don't have the ability to compute it across rows unless they are grouped. Group your data Use a Group By tile to aggregate: Net Revenue → SUM(Value) where Account is in Gross Revenue, Other RevenueTotal Expenses → SUM(Value) where Account is in your expense…
-
Here are the Domo Support Reference : https://domo-support.domo.com/s/article/360042934574?language=en_US …and one of the Community Forum Posts for references: https://community-forums.domo.com/main/discussion/57717/documentation-on-activity-log-event-action-definitions VIEWED Definition: A user opened or clicked into a…
-
If you get hit by that bus, or "milk truck" as I like to say…(oh dear I am old. Do they still have milk trucks?)…Condolences. Make sure your colleagues are signed up to post here on the forum.
-
Durable Sharing Setup for Domo Publications Create two groups: All (default group, gets all datasets) Small (subscribers, gets dashboards only) Publish datasets: Create a publication containing only datasets Share this publication to All Publish dashboards: Create a publication containing only dashboards Share this…
-
If users can see data but aren’t allowed to use or share it, they’ll often end up recreating or duplicating that data elsewhere just to keep working — which ultimately causes bigger governance problems. For me, the key is that the root dataset must be trusted, protected, and unchangeable — but once it’s available, users…
-
I don't do a lot of workflows, so this a bit of theory. Upload your file (CSV, Excel, whatever). Then based on your comments, parse the file and transform the rows into delimited format using JavaScript/Python, converting them with a code block into a delimited string and store the result to a variable. JavaScript: let…
-
It means the assistant couldn't figure out what you want, specifically. Perhaps your question is too vague. "give me count of Miami location" The assistant may not know what Miami location refers to - is it a column name, a filter, or a label? Try changing the input "input": "What is the count of rows where location =…
-
Biggest Data Horror Story I can think of two. I was the sole author of an order system for a major company that supplies point-of-sale to restaurants. I accidently deleted the user table. When I saw the system message my heart sank. I'm pretty sure it skipped a couple beats. I managed to get the table rebuilt quickly and…
-
Thanks for the thoughtful questions. My main goal with a “view-only” permission is to let users safely inspect and use datasets without any ability to modify or delete them. They should be able to explore and analyze data, and build Cards or Dataset Views, but not make any changes to the dataset itself. I’m less concerned…
-
Hizzah! Glad to hear it.
-
Thanks, that means a lot — but honestly, I’m just doing my part. The real credit goes to those who set the bar long before I got here. I'm not concerned about always having the ‘right’ answer or posting my own questions — the aim is to be helpful or get help. If it leads to a solution, adds insight, or sparks discussion,…
