MarkSnodgrass Coach

Comments

  • The first thing to check would be your date range filter. If you can set it to graph by month then it will automatically group it for you by year month. If that is unavailable, you can click on your date field and choose format - date format - custom and enter in your format.
  • You can do this by creating beast modes for each of your series for current/future months and another for historical months. Since you have 3 bars, that would indicate you have 3 items in your series, so you would need to create 6 beast modes. Each would look like this: Series A Historical Beast Mode CASE WHEN seriesname =…
  • The API key should be the access token that you would generate in your instance. You can generate an access token by going to More → Admin → Access Tokens. Make sure you set an expiration date that is far out, such as 10 years.
  • Before going down that road of trying to use JavaScript, you may want to check what your company time zone settings are and what a user's Domo time zone settings are. Under More → Admin → Company Overview there is a time zone setting that your company can be set to for the default display. Each user can have their own time…
  • You may want to try how I outline to do this in this video:
  • Form Builder has traditionally been a paid feature. However, it may be included at no cost to your organization. The app store does not know what agreements you have in place, so it will always say trial when looking it at in the app store. I would talk to your CSM to see if it is a paid feature or not for you.
  • I don't know the answer to this, but I agree this would be helpful to know. I would also like to know how many days does it take for a dataset to not be accessed before the dataset goes into this state.
  • There is currently no option to change the delimiter when exporting to CSV. I would recommend adding that to the Ideas Exchange.
  • In Analyzer, click on the Summary Number and click on Show Formatting Options below the label. Choose Number (or Currency) and uncheck abbreviate and check use thousands and set decimals to 2.
  • You can also use the SharePoint Online Rest Connector to pull in the data. Here's the KB article that explains how to get it set up. https://domo-support.domo.com/s/article/360043436773?language=en_US
  • I see in the bottom corner of the chart when you are in the dashboard that the filter icon is showing. This means there is a dashboard filter applied to all cards on the dashboard. Likely, that filter is causing the previous to not be able to show.
  • @Jessica I recently struggled with this as well. I wish the implementation and documentation of Form Builder/Viewer was stronger. Hopefully my instructions will help you. The first thing that you will want to do is to go to your Form Builder where you built a form and select Edit Card in the wrench. Then, click on the…
  • You can do this in Magic ETL with the Rank & Window and Filter tiles. In the Rank & Window tile, select the Rank function and order by time_stamp descending and partition by load_id. Add a filter tile after this and filter to where rank equals 1. This will give you just one entry per loan_id and it will be the one with the…
  • You can use the formula tile and use the concat and date functions to build your date and make it be recognized as a date field. Here is an example where the date will always be in 2018 DATE(CONCAT(`Month of the year`,'/1/2018')) Here is another example where it will extract the year from the current date…
  • You could also create groups using Segments. Here's the KB article. https://domo-support.domo.com/s/article/4403089503383?language=en_US
  • There is not one currently in the appstore. Depending on how they make data available, you might try the JSON No Code Connector, the Dataset via e-mail connector or the CSV Advanced Connector.
  • Agree with @MichelleH on the dataset copy. A couple other options if they are available are Virtual Datasets and Domo Publish.
  • You are going to want to add a fixed function into your beast mode. Look at this KB article on how to do it, specifically the Filter None section. https://domo-support.domo.com/s/article/4408174643607?language=en_US
  • I would suggest looking at the dynamic textbox card to do this rather than smart text. You can use the category name for the keyword and the value to show the # of clicks (if you want). https://domo-support.domo.com/s/article/360042924514?language=en_US The Multi-value gauge card is also highly configurable and could be an…
  • The first thing that jumps out at me that might be throwing off the histogram chart is that you have something in the Sorting properties. Try removing that and see if that allows it to distribute better. If you haven't looked at the KB article, this can be helpful in understanding how the chart is intended to function.…
  • I saw someone else ask the same question as they are experiencing the same issue. I would recommend creating a support ticket as Domo might need to look at their API connection and see if something changed.
  • I would check what groups are assigned to those dashboards and remove the groups that no longer need them. A user will automatically have access to all pages/dashboards when they are assigned to groups that have been given access to a dashboard.
  • I believe you need to move your Leads field out of values and into rows and then aggregate it the same way you had in in values.
  • Also, if you have data from the current month coming in and you don't want it to be considered, you can add a beast mode that looks like this and add it to the filters to remove it. CASE WHEN LAST_DAY(CURRENT_DATE()) = LAST_DAY(date) THEN 'Exclude' ELSE 'Include' END
  • You can do this with the multi-value gauge card, which is one of my favorite cards. You are going to want to do a few things to make this work. First, set your date range filter to the last 16 months. This will allow the card to use data back to December 2022 as it counts the current month as a month. Second, create a…
  • In the Chart Properties under General, set Sort On Totals to descending. This will make your chart group by the overall total and not the individual items.
  • In regards to getting things from the appstore, I am most interested in better visibility into what connectors are available and most used. I would love to see a trending section and a newly added section. The trending section would show the most installed connectors in the last 30 days or so. While the preferred tag is a…
  • You would want to use the Lag Windows Function in order to get the previous value. LAG(SUM(`surveyvalue`)) OVER (ORDER BY `fiscalquarterdate`) It's also worth pointing out that the Flex Table card is a great card for showing a previous value next to a current value. It's highly configurable to show a combination of values,…
  • In your ETL, before you do your running total in the rank & window tile, you are going to need to join your data to all months that exist. This way, there will be no gaps and you will be able to create a running total for each month.
  • I would use the the DomoStats connector and pull the Dataflows and Dataflow History reports. This should give you the names and IDs of your dataflows.