Comments
-
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
-
@calvert_schaefer - I see what you are saying. There is no option for keeping the leading zeros when you use that connector. I think you need to submit to Domo Support. Is there a reason for using that connector rather than just upload a spreadsheet under the data center?
-
I’d like to see webinars that explore working with data collections as opposed to standard datasets. For example, writing to a data collection using Python in the ProCode editor and then interacting with that collection in a workflow. It would also be great to dive deeper into how manifests play a role in that process.…
-
Let's see if we can get conversation going and get you working. Domo workflows may be representing the duration in ISO 8601 format. Such as P3D (3 days), PT2H (2 hours. If that's the case, you could try calculating daysUntilEnd as the number of days between current datetime and product end date. If the number is 5, convert…
-
Sample data: Product,Sales Product A,1200 Product B,950 Product C,870 Product D,1500 Product E,400 Product F,200 Product G,1750 Product H,300 Product I,100 Product J,600 ETL: Group By: Rank: Gives: Then create beast mode as Product Group: CASE WHEN `Top N` <= 5 THEN `Product` ELSE 'Others' END
-
Create an ETL and use the Rank and Window tile to rank products by sales. Or beast mode with something like RANK() OVER (ORDER BY SUM(`Sales`) DESC) Once you have a ran defined you can create a beast mode CASE WHEN {rank} < = 5 THEN `Product` ELSE 'Others' END
-
@ColemenWilson I'm not smart enough for that fancy math. I have to use fingers and toes.
-
Using what I showed. If the week ends on Sunday, the formulas change to DATE_ADD(`StartDate`, CASE WHEN WEEKDAY(`StartDate`) = 1 THEN 0 ELSE 8 - WEEKDAY(`StartDate`) END) DATE_ADD(`ActualEndDate`, CASE WHEN WEEKDAY(`ActualEndDate`) = 1 THEN 0 ELSE 8 - WEEKDAY(`ActualEndDate`) END) I don't have raw detail records to match…