GrantSmith Coach image

コメント

  • 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
    Dataflow failed GrantSmithによるコメント August 2023
  • 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.
  • I'd recommend logging a support ticket to have the Domo team look into this issue in the back end to see if they can find a reason why the dashboard copying isn't working correctly for you in this instance.
  • Currently I don't believe there is an option and that's something Domo would need to change. I'd recommend logging an idea exchange idea to support unicode characters during CSV exports.
  • The Domo Knowledge Base contains several good articles about transforming data within Domo. I'd recommend reading over these articles to get a good understanding of the transformation possibilities: https://domo-support.domo.com/s/topic/0TO5w000000ZamzGAC/transforming-data-in-domo?language=en_US
  • That's fine, you'd just need two different beast modes, one for display and one for sorting. Have the display on your table and the sort in your sorting options on the card.
  • It does. If fieldname is a timestamp you can just do this to get the numerical equivalent HOUR(`fieldname`)
  • Domo is doing string sorting and not numerical sorting because you value is a string. You can create a beast mode to calculate the numerical hour value (if you don't already have it) and then use that in the sorting section instead of your actual display hour string you currently are using. This way it will display how you…
  • Can you expand on this a bit more? It seems you already have variance as a % in your pivot table?
  • Are the audit date and submit date fields or timestamp fields? I've written up an article previously on formatting the difference between two timestamps which may be helpful. https://community-forums.domo.com/main/discussion/52682/domo-ideas-conference-beast-modes-time-difference-formatting
  • If you're having issues with the connector I'd recommend logging a ticket with support for them to look into it on the back end.
  • https://community-forums.domo.com/main/discussion/comment/72295#Comment_72295 This is because your regex is searching for a mapping and then replacing that with the same thing it found. Because there is no REGEXP_SUBSTING you need to match the entire string and then it'll replace the entire string with your mapping. You…
  • You'd need to do a cartesian join on your dataset with your mapping dataset, apply the rule, and then reduce your dataset back to the original size. Start by adding a new column called Join Column with a value of 1 to each your input dataset and your mapping dataset. Join these two datasets together on the new join column.…
    Standardizing Names GrantSmithによるコメント July 2023
  • The input dataset should be the one you're wanting to do PoP analysis on along with the calendar dimension dataset from the Domo Dimensions connector. It's good practice to filter out any unnecessary data as early as you can in the ETL to improve processing efficiency. If you don't need dates prior to last year remove them…
  • It's the grey canvas area your tiles reside. Click inside anywhere inside that area but not directly on a tile then do a control+v to paste the code in.