Comments
-
You can do this with a window function: MAX(FIRST_VALUE(`value_field`) OVER (PARTITION BY YEAR(`dt`), QUARTER(`dt`) ORDER BY `dt` DESC) This will get you a single value of the first value for each year+quarter partition. Since it's ordering by the dt field it'll get you the last date in the quarter.
-
The DAP ID has been around since before partitioning. I've never been able to fully establish what it represents. My guess has always been some internal Domo ID. It'd be great if the metadata datasets came with helpful descriptions of each of the columns.
-
I'd recommend reaching out to Domo Support so they can look into this bug in their plugin for you.
-
You can do this in either a Beast Mode in a card or a Formula Tile in a Magic ETL. `Column` * 3.1415926535 What does you example beast mode look like?
-
You can combine the metrics together in the same dataset and use the Site as your series so it'd look something like this: Here's what the sample dataset looks like: One thing to look out for would you may need to enforce the sorting so that the CTR comes before the other sites so that it'll show up as the line. You can…
-
You'll likely need to create your own custom app to handle the authentication. You can read more on how to do this here: https://developer.domo.com/portal/5d8f965eb3469-overview
-
Hi @louiswatson You can do a left join from your existing dataset to your dataset 3 based on the Database Number. If the right table's Database Number is NULL then it doesn't exist in the left table. You can do a left join (or right join) and then filter on a NULL value.
-
You can utilize a Trellis Chart options in the bar chart. https://domo-support.domo.com/s/article/360043428713?language=en_US - This give more information on how to configure it.
-
You can use a formula tile and the regexp_replace function: REGEXP_REPLACE(`field`, '[\n\r]', '') [\n\r] - This is a selection of either types of newline characters (\n for mac/unix and \r\n for windows)
-
Are you able to do any other API calls with that client id and secret? A rate limit would return a 429 error code - Too Many Requests. This is pointing to a permissions issue.
-
Does your token / client id & scecret still exist or have they been revoked? Does the user that the token / client id & secret was created for have access to this specific dataset?
-
What does your function look like? You should be able to do something like this: STR_TO_DATE(`str_field`, '%b-%y')
-
Congratulations @colemenwilson!
-
You can use the STR_TO_DATE function in a beast mode or a formula tile in a magic ETL to convert a string to a date based on the format string. Documentation: https://domo-support.domo.com/s/article/360043429933?language=en_US https://domo-support.domo.com/s/article/360043429953?language=en_US
-
Case statements are evaluated from the top down and will stop when they find a condition that's true. Because you have WHEN STR_CONTAINS(AdditionalRecruiter,',') THEN AllRecruiter At the top of your case statement the other two below it won't ever get evaluated. Put the N/A and N/B conditions above this to have them…
-
If you're having an issue with the connector not returning the right amount of information from a Domo connector I'd recommend you log a ticket with Support to have them take a look into the backend.
-
Smart text doesn't apply to the bread crumb trail, just the current page title that's being displayed. I'd recommend logging an idea with the idea exchange to allow for smart text to apply to the breadcrumbs.
-
You've got a few too many closing parenthesis and aggregate functions. Are you wanting the filter none to apply to the engagements AND the page views or just the page views? Try something like this: SUM(`Website Engagements`) / SUM(SUM(`Page Views`) FIXED (FILTER NONE)) This will get the fraction of engagements of the…
-
I don't believe this is currently possible. One thing to keep in mind is that Excel has a limit of 255 sheets in a workbook which can be easily reached on some dashboards. I'd recommend adding this as an idea to the idea exchange. (https://community-forums.domo.com/main/categories/ideas
-
One workaround might be to utilize Window's task schedule to "manually" run the job at a specific time if the WB scheduler keeps disabling the schedule. You'd need to call the wb.exe (located wherever you have Workbench installed) yourself with the proper parameters (you can do wb.exe --help) to get the command line…
-
Hi @Jessica What does your HTML code like? Are you including your graph in a <div> tag? Have you set the margin on your <div> tags in the CSS to be 0? Also you could add a colored border to your div or other tags to see where they're actually being displayed to help diagnose your issue if it's within your HTML code or if…
-
Can you expand on what you're needing? Are you wanting to see the data after it's been processed by your function tile or are you wanting to know the underlying query for an API call? There isn't really a way to get the underlying query of the ETL as it doesn't exactly function that way. You can run a preview of your data…
-
Using a formula tile you can use a regexp_replace function to extract just the domain: REGEXP_REPLACE(`email`, '^[^@]+@([^\.]+)\..*$', '$1') ^ - match the beginning of the string [^@]+ - Match 1 or more (+) of characters that are NOT (^) the @ symbol. @ - match the literal @ symbol [^\.]+ () - Store this for later…
-
You can wrap your beast mode in an IFERROR function to default it to another value if there was an error with your date conversion
-
It sounds like an issue with your username and password. Have you confirmed they are correct? Are you able to use the same connection information with the MSSQL application outside of domo to connect to the database? Have you confirmed the server name is correct? Do you have an IT department to work with to confirm the…
-
What topics would you like to see covered at Domopalooza next year? In Person! Unique / Out of the box design solutions Data Governance Less Fluff, more substance. Not the What but the How. What features would you like to learn more about? Custom applications App Studio What are your top challenges in Domo right now?…
-
Hi @pwhite8 , You might want to look into domo.onFiltersUpdate() to do something in your brick when the filters update.
-
Currently this isn't an option. I'd recommend posting this idea to the Idea Exchange where other user can vote on this idea and help direct Domo's product roadmap.
-
You should be able to pass in the updateMethod=APPEND as a url parameter to the api endpoint.
-
I believe Domo defaults to Open Sans looking through the CSS.
