MarkSnodgrass Coach

Comments

  • When you are on a page, click on a card title to view it full size. Scroll down below the card visualization and you will see the dataset that is powering the card. Click on that. This will take you to the data center and to the information about that dataset. From here, you should see the 3 dots in the upper right and can…
  • When viewing a card, if you click on the name of the dataset below the card, it will take you to the data center dataset page. From there, you can click on the 3 dots in the upper right corner and choose Export Data.
  • Can you break it up into two datasets an then join it back together in Magic ETL?
  • It sounds like your Netsuite data is transactional level, and your Adaptive data is monthly. You need to aggregate your Netsuite data to monthly prior to joining with your Adaptive data. You can do this with a group by tile prior to your joining tile. You will need to join on department and month/year, not just department.…
  • What did you see when you clicked on the data tab of the dataset and scrolled through all the rows? Are they showing there?
  • On the overview tab of the dataset, how many rows does it say are in the dataset? If you click on the Data tab and scroll to the bottom do you see those rows? If it isn't showing and you double-checked the cell range of import, it might be worth opening a support ticket. Another option would be to upload it again, but then…
  • You can "remove the header row" by making the header row color and the header font color the same. If your background is white, you can change the font color to lightest grey and turn the opacity to 0. There is not a way to remove the gridlines, unfortunately. You could look into the DDX bricks that are now available in…
  • @jaeW_at_Onyx is well-versed in this area. Jae, do you have some thoughts you can share to @Ben_Dunlap ?
  • You can make a table card as your drill path instead of letting users go to the raw table view and put the columns in the order that you want. When allowing users to drill to the raw table view, I've noticed it will put columns that were part of the drill path selection first, followed by other columns. There is not a way…
  • Have you tried to rebuild your MySQL dataflow in Magic ETL? The latest Magic ETL runs extremely fast and I would expect it to handle 7m in under a couple minutes. You can also do formula rules in the filter tile so that you could filter to month to date at the beginning and then do the rest of your work if you found you…
  • @mattwelykholowa glad that worked for you. If you can mark the answer as accepted, that will help others in the community.
  • I was unable to connect to an xlsx spreadsheet in Google using the spreadsheet ID, but I could using the Discovery option and then selecting it by clicking on the 3 dots next to the Choose File. It only seems to find files in the root directory, though, but that could be how my connector was initially set up. I did find…
  • If your postal codes are the same length and you want to add it after the 3rd character, you can do this: CONCAT(LEFT(postalcode,3),' ',RIGHT(postalcode,3))
  • Check the date range filter properties and see if you have anything set to compare against. Your date range can't be set to all time in period over period. Also, there is a question mark next to Compare To. If you hover over that, it will let you know what piece you are missing to make it work.
  • @GrantSmith is the GOAT of Regex. :) I imagine he will have something for you.
  • You shouldn't have to do a lot of concatenating. In the value property, set that to currency. In the general properties, choose Abbreviate Values. This should make your value show $496M.
  • You could try and use the unpivot tile and then potentially just join once. If you haven't looked into the dynamic unpivot and unpivot tiles, you could see if that would help you long-term. Here's the KB article. https://domohelp.domo.com/hc/en-us/articles/360044951294-New-Magic-ETL-Tiles-Pivot
  • You would use multiple join tiles and just change the column that you want from your primary datasource to match your secondary datasource. Would look something like this:
  • @bp_paulo_fernandes have you looked at @GrantSmith 's post regarding running totals in beast mode? https://dojo.domo.com/discussion/52681/domo-ideas-conference-beast-modes-running-totals#latest He lays this out pretty nicely.
  • I would suggest using the Dynamic Textbox card to display this type of information as it doesn't put the underline in it. You can see this thread where someone asked the same question: https://dojo.domo.com/discussion/53732/summary-number-format-in-notebook-card Hope this helps.
  • Clicking the wrench and then the Edit Scheduled Reports just takes you to the scheduled reports management page. To schedule a dashboard, click on the up arrow with the box around that is just to the left of the wrench and then click on Schedule as Report
  • For you first statement, you can split out your data and perform a number of functions with tiles and then join it back together. Something like this: Your filter tile would filter to the invoice date that you want. The Group By tile would give you distinct list by just choosing customer as your column and then do some…
  • Unfortunately, this seems like a bug in the new release. It doesn't seem to support html, so you can't use <br> tags and you can't use \n like you can in other places. I would send an e-mail to support@domo.com and let them know.
  • Major kudos to @Anna Yardley @zcameron and Richard Carey for putting on a great awards ceremony! That was a lot of fun and a great way to interact others virtually. Thank you!
  • Ahh.... I see what you mean. I would submit this as a bug to Domo Support support@domo.com . Include that screenshot and information that it shows up on the export and hopefully they can include a fix in a future release.
  • Can you be more specific where this is showing for you or provide a screenshot? Is this on a standard page or a dashboard? Or is it when you are viewing an individual card as a single page? My PDP shield shows next to the card title, so I'm not sure where it would be showing in the bottom left.
  • Domo has a Slack Quickstart in the appstore that will not only create the connector, but build a page full of cards for you to help you quickly see what kind of visualizations you might make with the data. Search for Slack in the appstore and you should see Slack Quickstart. Hope this helps.
  • @loganherzog If you watch the network traffic in your browser when you view a card and click on share and choose Excel, you can see the API call that is being made and the necessary headers. You can call those same APIs within your application. You will just need to know the card id for each you want to export. Hope this…
  • The first thing to check is to make sure that the ETL sees your due date and payment date fields as dates. If they aren't you can fix that a couple different ways: on the input dataset, you can click on configuration and then expand data handling and set the data type as date. You can also wrap the DATE() function around…
  • If you are able to edit the Excel document and put some dummy data in that cell, that seems like the easiest solution. Another option would be to start at an earlier row and then filter out the header rows in the ETL by looking for certain information and then create your own column names with the select columns tile in…