コメント
-
I can see the dashboard now. I believe after attempting - you understand my point. You can do the line chart in Domo as shown in the mock-up. But the rest, as simple as it looks, can't be replicated. I have experience with other systems and tools. That mock-up shouldn't be a problem to replicate.
-
I too think AI is overhyped. Especially if it's wrong. I can't get normal AI in Domo or outside to understand the joins between two or three tables. That said however, you definitely need to take a look at what can be done with Claude and Cursor for programming. @Data_Devon isn't wrong. For programming inside or outside,…
-
Apparently, I'm not allowed to message either. 😂 I sent you an email.
-
As an artist and graphic designer, I'd like the Louvre to swap the Mona Lisa for this version. It's not exactly what they want, but it's close enough. Sorry, I couldn't resist. By the way - I can't get to that URL you posted for some reason.
-
Domo has clearly invested heavily in AI capabilities, which makes sense given the demand and excitement around AI-assisted analytics. As tools like Claude, Cursor, and other AI platforms become more powerful and accessible, users will increasingly discover what they can do outside of Domo. But I feel this AI / pro-code…
-
Hello Reese, from Dodgeball Australia. If you haven't seen it, check out the group section for non-profits.
-
解決したと聞いて嬉しいです。 Translation: We're happy to hear you have it resolved.
-
Congratulations John Le, @DashboardDude! Domopalooza 2026 was a great pleasure. Terrific job on Boujee Bingo, @GrantStowell. "Chase ArborRose" is fun but let's leave that twelve month record to the true legend, @GrantSmith. I'd like to sit back and see some new faces involved in the discussions too.
-
70%程度のメモリ使用率が原因である可能性は低いと思われます。 以下をお試しください。 まず、シークレットウィンドウ、またはEdgeやFirefoxなど別のブラウザでダッシュボードを開いてみてください。そちらで動作する場合は、Chromeに起因する問題の可能性があります。 次に、Chromeの拡張機能(特に広告ブロッカーなど)を無効にして、ページを再読み込みしてください。 その後、Ctrl + Shift + R を押してハードリフレッシュを行ってください。 これらを試しても改善しない場合は、Domo側の問題の可能性があります。スクリーンショットやコンソールのエラー内容を添えて、Domoサポートに問い合わせてください。
-
I believe the Domo office add-in is only one-way (Domo to Excel). You have a number of options for bring Excel into Domo: • Manual upload • Domo Workbench (see Admin > tools) • API calls, etc
-
It was a pleasure to you meet you at Domopalooza, Cam. Welcome to the Domo Community Forum.
-
These are just examples to support @DavidChurchman ’s point that “the card is the atomic unit of analysis in Domo.” And that the periodic table deserves further expansion. I’m confident @BenSchein will evaluate and champion any of these ideas that have real merit.
-
I think the issue is where the code is running. When the card is embedded in a dashboard, it’s hosted differently than when you preview it as a card. In a Pro-Code app, you don't need to load domo.s yourself—Domo already provides it at runtime. So trying to load it manually is what’s causing the 404. You can just use it…
-
What we could use now, is a BPTC. 🤣
-
I asked this question to more than one of the company booths at Domopalooza last week. The Snowflake people basically said what @Dhuddleston mentions - users find the Snowflake UI is more intuitive. And it already has close ties with Domo and Connectors, and assets available. There are other solutions than what you mention…
-
Terrific post @DavidChurchman. Domo’s competitive advantage is making the data-to-dashboard workflow simple and accessible. Strategies that reinforce that strength will continue to add value; those that pull focus away from it risk diluting what makes Domo effective. I agree that continued investment in the foundational…
-
There are several ways to update an existing dataset. I find it easiest to modify a record with Python via Jupyter Workspaces. I've loaded the entire dataset into a data frame, modified the record, and replaced the dataset via the data frame. But this kind of thing requires some experience with Python or knowing how to get…
-
Thank you @BenSchein
-
Magic ETL cannot perform recursive calculations (where each row depends on the previous row’s result). Instead, you must restructure the logic so each row can be calculated independently — typically using a running product or cumulative calculation based on existing data.
-
Use Dataset Views for aggregation (but NOT joining) Step 1: Create 2 Views View A → aggregate to Month View B → aggregate to Month Step 2: Feed those views as datasets into Magic ETL. Now: Input are already small datasets. Then join and add formulas. ================ To attempt a UNION, I would try something like: Use…
-
There are alternatives to Adobe Acrobat. I have a coworker that uses some free PDF software and it has all kinds of ability, might even be better than Acrobat. I don't know the name of it though.
-
EXAMPLE 1 — GOOD (Excel → Export as PDF) How to do it: File > Save As > PDF OR File > Export > Create PDF/XPS What this does: Keeps each cell as real text Preserves rows and columns Creates a structured PDF that Excel can read What happens when opened in Excel: Columns stay aligned Data lands in proper cells Little to no…
-
The problem appears to be in the way the PDF is created. Well structured text will come out as tables that can be recognized and extracted. Since you have a mix, it appears that some were properly exported and others were flattened to images. Using Adobe Acrobat Pro, I believe you can do an export from PDF to Excel. But it…
-
I was hoping to see a fix for the Python date issue in the list of new features at Domopalooza 2026. It would get you on the list of my favorite Domo employees.
-
schema = { "id": "int", "name": "str", "created_at": "datetime", "amount": "float", "is_active": "bool", # we'll handle this explicitly } import pandas as pd def enforce_schema(df, schema): for col, dtype in schema.items(): if col not in df.columns: continue if dtype == "int": df[col] = pd.to_numeric(df[col],…
-
Why not coerse the field type to text? df['TF'] = df['TF'].astype(str)
-
There's a little button on your monitor for dark mode. ;) It's there in BETA btw.
-
Have you checked the mobile idle timeout settings in Domo? Have they changed? Admin » Authentication » Session Settings
-
Based on the commented replies, this appears to be a Domo visualization rendering bug, not a data issue. The tooltip renderer appears to be HTML-encoding apostrophes into ' while the axis labels are rendering the raw value. Please submit a support ticket to Domo for escalation.
-
I would try to correct it in the dataset by creating a cleaned field via Magic ETL. Normalize the encoded characters before the use on cards and charts. REPLACE( REPLACE(`your_field`, ''', ''''), ''', '''' ) Or attempt to handle other encoding REPLACE( REPLACE( REPLACE( REPLACE(`your_field`, ''', ''''),…
