コメント
-
I don't see any reason why you couldn't. You could use the Python tiles to create a custom model or leverage built-in libraries. Use Domo's social media connectors to pull comments or posts to Domo or call with API. Or consider using Domo's Jupyter Notebooks (Python). Something like this from vaderSentiment.vaderSentiment…
-
Very nice job David.
-
Thanks for sharing. I very much enjoyed seeing it. Nice, clean interface.
-
Workbench 2.0 (Web-Based Version) Pros: Accessibility: Accessible from any device with internet access, making it easier for teams to collaborate and support each other. No need to install or maintain local software. Centralized Management: Jobs and configurations are stored in Domo's cloud, reducing dependency on specific…
-
Hard for us to visualize what you are dealing with. @rco…is it possible the value he's looking at is a Bitwise operator? (Where each position in the value represents a bit value in binary. And each bit maybe corresponds to an impression?)
-
Assuming my direction is correct, you'll need to apply ABS() around your formula. Hard to say without all the details of the formula. You want to calculate the absolute value of the actual variance formula, not just the column, then sum it. ABS(Actual Value - Budget Value) If your data is grouped, you would need to sum up…
-
If I grasp the concept properly: In the context of digital marketing and advertising, an "impression" typically refers to the instance when an ad is displayed to a user. It's a measurement of how often an ad appears in front of someone, regardless of whether the person interacts with the ad or not. If you have an online…
-
Are you saying you can't just multiply by percentage based on the campaign? CASE WHEN Campaign = 'Campaign 1' AND League = 'NHL' THEN TotalImpressions * 0.40 WHEN Campaign = 'Campaign 1' AND League = 'NBA' THEN TotalImpressions * 0.40 WHEN Campaign = 'Campaign 1' AND League = 'NCAAF' THEN TotalImpressions * 0.20 ELSE 0 END
-
Sounds like the issue has to do with abs() being applied to the total sum instead of each individual variance value. Calculate Absolute Variance Row by Row: Use the abs() function on each individual value in the "Actual Variance" column to get the absolute values row-by-row. Sum the Absolute Values: Once you have the…
-
I don't think Domo has a built-in feature for automatically changing the chart type. You can simulate the behavior using filters, multiple cards, and structuring your dataset. You should be able to do something like this: Creating a Response Type column that categorizes each survey question. Use multiple cards (or multiple…
-
I think it also has a lot to do with interactivity. Apps have more capability with workflows, forms, etc. I agree with @Data_Devon. If dashboards work for you, use them. There's no need to work through apps if you are monitoring/analyzing metrics without more process needs.
-
That post was quite a while ago. I don't know where a replacement page is or whether the functionality may have been obsoleted.
-
You can do a manual data export/import, exporting from eMoney in a supported format like CSV or Excel. Then use Domo file upload connectors or Workbench to schedule the import into Domo. Connect via API if eMoney provides an API. You can also use the Domo custom connectors to pull directly. As @ggenovese mentions, the…
-
Here are some troubleshooting steps to try: 1. Ensure Compatibility and Versions Excel and Domo Add-in Versions: Make sure both systems are running compatible versions of Excel and the Domo Excel Add-in. Sometimes version mismatches can lead to unexpected behavior. Domo Account Permissions: Verify that both users have the…
-
You lost me. There's a searchable filter app. There are bricks. But I'm not familiar with a "searchable" brick, nor how this relates to Coronavirus (the link you posted).
-
Can you configure a custom interaction using page parameters. Or use page level filters as a simpler approach. Using Page-Level Filter Navigation Use Domo’s Page-Level Filters or Dashboard Filter Views to set up a dropdown or search bar for order numbers. Set the interaction so that once the order number is selected, the…
-
You can create a Magic ETL using ranking and filtering tiles to separate the top 25, then aggregate the remaining records. Rank Travellers by Their Monthly Spend - Use the Rank and Window tile in the ETL. Use partition by for any grouping you need. Order by - choose your spend column and set the order to descending so the…
-
Under the MORE command at the top, go to Admin > Content > Cards. You can see all the cards listed as assets and what dashboards or app they appear on.
-
Creating a Year-Over-Year (YOY) card that compares fiscal weeks, rather than calendar dates, requires some custom adjustments because the default behavior will match the same calendar dates across years, not the same fiscal weeks. Make sure your dataset has a field for the fiscal week and year. This allows you to create a…
-
It looks like all those conditions point to parent_entity_title. What's the point in the CASE statement? I think you want what you had before but remove the ELSE clause.
-
Are you sure this isn't caused by the data you are using and the fields that are presented in rows and columns?
-
I don't think there's any way to directly modify the head section of an embedded dashboard. So adding a tracking script would not be something straight forward. You would need to figure out a work-around like using a parent page to include the script.
-
Yes, its probably related to the user deleting the file. Files normally will have a unique identifier in the background that let's the application know the difference, even if the names are the same.
-
To integrate Domo's embedded dashboards without refreshing the entire page, you can try JavaScript to dynamically load the iframe instead of submitting a form that triggers a page reload. <div id="dashboardContainer"></div> <script> function loadDashboard(embedId, embedToken) { // Create an iframe element var iframe =…
-
Domo, doesn't give you many options for legend positioning. You can probably figure a work around with data label positioning and beast mode calculations, or some other method.
-
Private Embeds: Private embeds require users to authenticate to view the content. Because users are logged in, analytics scripts like FullStory can capture user behavior as intended. This generally aligns better with tools like FullStory, which often depend on identifying user sessions within a controlled, authenticated…
-
Create a platform field formula. Then filter on the new field. CASE WHEN `Facebook Engagements` IS NOT NULL OR `Facebook Impressions` IS NOT NULL THEN 'Facebook' WHEN `Twitter Engagements` IS NOT NULL OR `Twitter Post Impressions` IS NOT NULL THEN 'Twitter' WHEN `TikTok Engagements` IS NOT NULL OR `TikTok Impressions` IS…
-
The formula as Grant has typed it looks correct. Assuming your typing exactly matches the condition logic. Using a fake dataset: hospital_name current_balance financial_class aging_group Central Hospital 15000 Medicare 0-30 days Central Hospital 22000 Medicare 31-60 days Westside Clinic 5000 Medicaid 61-90 days Eastside…
-
In beast mode, CASE statements can’t perform aggregate functions like SUM within the conditional logic. Use the CASE statement to identify the rows that meet your criteria, and then apply the SUM function on that logic at the card level. I'm not sure what you are trying to do with your conditional logic. You are saying if…
-
There may be limitations to what it can do inside Domo. Here's a simplified version to check if it fires properly. If its a brick, you have to put the javascript code without tags in javascript, and the button in the html section. <button onclick="openCard()">Open Card</button> <script> function openCard() { var url =…