コメント
-
In Domo the stack order should be based on the series. You can create a custom variable for your academic years and decide whatever order you want. It would be helpful if you could show us the card. CASE `Academic Year` WHEN '2023' THEN 1 WHEN '2024' THEN 2 WHEN '2025' THEN 3 WHEN '2026' THEN 4 END
-
@TommyDenn Apparently Microsoft Graph is the official API for accessing data in Microsoft 365 and Azure Active Directory. Try connecting through Microsoft Graph's API us OAuth2. You should be able to access user profiles, last sign-ons, groups, titles, departments, etc.…
-
I'm not trying to solve your whole issues, but trying to assist on a possible solution. Review the code with the assumption you have a dataset for 'ReviewStatusOutput'. Btw, there may be other more elegant ways to answer your question. Try this: Go to AppStore and open a Blank Brick as a new dashboard. Edit the brick so…
-
It may be related to the way you have the fixed series set. Even though you filter the data, the series is still affecting the chart.
-
I needed to Google to understand CPK (Process Capability Index). I do not believe Domo has any native CPK function. Beast mode can do basic aggregations but its limited for something like complex statistical functions like standard deviations across a dataset. You'll want to create a Magic ETL or use SQL. And if your data…
-
You can use Domo forms to collect submissions and write those submissions to a Domo dataset. Then using a card, display the submitted data in a dashboard. The dataset updates in real time when new forms are submitted. But you need something like workflows to define automated logic based on the dataset changes. For example,…
-
Another topic I would like to see is AI forecasting with medical transactions. Forecasting the next few months or year based on previous data.
-
The SQL tile can do group by and inner joins but it has limitations such as temporary tables, limited CTE, and no recursion. If you are having trouble with group by, remove aliases and use actual column names. You may also need to break up complex logic into multiple tiles. I don't use the SQL tile because of performance…
-
I don't believe so. Without some of the windowing functions of SQL, you won't have dynamic logic in FIXED expressions. I played a little and got close but did not get a running total. It used a value at each date not accumulated over time. You are going to have to create an ETL because of the aggregation needed.
-
The error seems to indicate Snowflake does not have access to that output dataset. I do not have "compute" in my instance to see similar options. Is there an output tile for a Snowflake dataset?
-
Embedding a form brick without authentication is not safe for collecting sensitive data or PII. It exposes security, privacy, and compliance risks. A work around would be a 3rd party secure form like Google Forms. You can then ETL the data into Domo via connectors or API. Otherwise, as I mentioned - run the form…
-
Looks like a bug in flex table. I suggest contacting Domo Support.
-
You screen images are not showing.
-
It may be that the error is referring to a specific dataset in your ETL. Such as a dataset from a cloud connector (AWS, Google, Azure).
-
Am I to understand that you are trying to extract email addresses from a single column that has a huge amount of text and contains ALL your email addresses and their domains? If so, ouch. And then…you are trying to compare each value to a list of known freemail domains and flag whether the domain is freemail or business?…
-
When you apply a filter on the card, it might not apply to the logic on the dataset powering the card. The card filters are like quick filters…sort of temporary. Make sure your alert is based on a value or or change to a value or aggregated metric of the dataset.
-
You state that you removed "some" null dates. Preview may work because it is not hitting the full dataset that hits the issue. Such as data consistency, nulls, or formatting. It's just working with a subset. Make sure your data column is properly formatted as a date (not string) and contains NO nulls when passed to the AI…
-
One of my favorite quotes was highlighted by X-Files' Lord Manhammer. When coworkers need help but don't want to admit they need help. Say it! https://www.youtube.com/watch?v=NOb7JXV1T1Q
-
It looks like it has something to do with the way it was stored and ported over. Can you delete and recreate the aiMetadata variable in the new instance to see if it will have the child properties for dataDictionary, etc as in the first instance?
-
@JasonAltenburg - Getting AI to do something specific in graphics can be very frustrating. Getting nunchuku chains joined or even getting a sword handle to align with the scabbord can be frustrating. To fix these issues, I draw over the top or remove elements and replace them with my own drawn graphics. Since I do a lot of…
-
🤚 That popup always appears. Always. Is this is new change that will make it ignore? Because I can't get it to go away. I don't understand why we should need to see it at all….even once.
-
I develop back-end secured applications using Visual Studio, hosted on HTTPS-secured websites with authenticated logins. I then integrate the resulting data into Domo like any other data source. I avoid public embedding of forms and recommend using Private Embed or SSO Embed via Domo Everywhere to control access. I also…
-
Another try with aggregation (oops). % change: (SUM(`Actuals`) - SUM(`Budget`)) / SUM(`Budget`) % change value: CASE WHEN MAX(`Level 1 Description`) = 'INCOME TOTAL' AND SUM(`Actuals`) < SUM(`Budget`) THEN CONCAT('<span style="color:red;">', ROUND((SUM(`Actuals`) - SUM(`Budget`)) / SUM(`Budget`) * 100, 2), '%</span>') WHEN…
-
How about creating separate color logic in a column with the logic based on the % change using HTML color formatting? Sample data: Level 1 Description,Actuals,Budget INCOME TOTAL,90000,100000 INCOME TOTAL,110000,100000 Expenses,45000,50000 Expenses,52000,50000 COGS,30000,35000 COGS,37000,35000 INCOME TOTAL,100000,100000…
-
I prefer using Domo Workbench. Find it under Admin > More > Tool Downloads.
-
Sorry…I'm in on a conference call…lol CASE WHEN `NextCycleCount` >= CURRENT_DATE() AND `NextCycleCount` <= DATE_ADD(CURRENT_DATE(), INTERVAL 30 DAY) THEN 'Show' ELSE 'Hide' END ItemID,ItemName,NextCycleCount 1001,Widget A,2025-07-10 1002,Widget B,2025-07-15 1003,Widget C,2025-08-01 1004,Widget D,2025-07-08 1005,Widget…
-
CASE WHEN `Next Cycle Count` BETWEEN CURRENT_DATE() AND DATE_ADD(CURRENT_DATE(), INTERVAL 30 DAY) THEN 'Upcoming in Next 30 Days' ELSE 'Outside 30 Days' END This would give you a field you can use to list or filter. CASE WHEN `Next Cycle Count` BETWEEN CURRENT_DATE() AND DATE_ADD(CURRENT_DATE(), INTERVAL 30 DAY) THEN 1…
-
Review a post from last week: https://community-forums.domo.com/main/discussion/69820/showing-top-n-and-others-in-table-chart#latest
-
@BlakeP_0 - CASE WHEN 'Save As' AND 'juice-box' AND 'nap' THEN 1 ELSE 0 END