GTA Member

Comments

  • To just clarify for me, are you after a unique format that when you click on the field once you drag it into the visualization and tell it that the field is a currency with the indicated number of decimals, that you are after a different view? I'd likely leave the formatting out of Beastmode unless you are definitely after…
  • I absolutely get where you are going with the ask. In order to filter and search on that flag, I'd recommend that you run your dataset through a Magic ETL DataFlow and use a window function to partition based on the unique order number, like you mentioned. You can find documentation for that…
  • Hi Chris, That is correct. Participant level licenses are a minimum to view and engage with cards in Domo. Great question. Thanks.
  • This is where it would get into the license discussion/value add of getting them into Domo as users. You could use PDP policies to manage the cards to the specific users, but exporting a specific version would not be part of the plug-in right now. cc @rmoody
    in Reporting Comment by GTA May 2017
  • The Powerpoint plug-in was built with that purpose in mind. I'd recommend that you visit http://knowledge.domo.com?cid=domopowerpoint. This feature allows you to customize your deliverable deck, and update the data to live right before printing it off. Anyone that uses the plug-in can use the refresh button to get the data…
    in Reporting Comment by GTA May 2017
  • I will send this over to our team to see if there is sample code that we can provide. Stay tuned. Thanks
  • I'd recommend to dial over to our Support team and get this resolved. It would be great to get on a screenshare to be able to walk through what's going on in this instance. You can reach them at the following url https://support.domo.com/. We have a great team of Workbench specialists that can get this straightened out. 
  • Can you let me know which connector that you are referring to? We can definitely get this looked at. Thanks
  • You're definitely approaching it the right way. We have received great feedback for this need, and our development teams are working on solutions. DataFlows and Beastmodes are commonly used today. This article may help from the help center: http://knowledge.domo.com?cid=beastmodecomparison 
  • Hi there, I see that this thread was put in nearly a month ago. If it is still an issue, I'd like you to contact Domo Support at 801-805-9505, support@domo.com via email, or Buzz them from your instance. Typically an error like this occurs from a null exception that is pointing to a null value. There could be multiple…
  • Being that this is coming from Jira, I would recommend that you reach out to Domo Support at support@domo.com. Typically the data, as it passes into Workbench, is made via a connection of ODBC or a local file (csv, excel, etc). It only reads what is passed. So I am wondering if Jira is not passing the data in the current…
  • We definitely are going to want to have Support look into this. That'll be the path to follow. Can you send this over to them? Thanks, Aaron!
  • Thanks for the clarification. That would be a solid request for a product enhancement. The ideas exchange is where you can submit that idea. The workaround for now would be to create either a duplicate card with the filters applied in edit mode. Then you can access "Publications" from the main menu and build out your…
  • To make sure that I understand, are you referring to the Publications feature when you reference slideshows? If so, publications are built on a card basis. That would mean that in order to apply the filters needed for that publication, you'd need to have those filters applied to each card in the edit mode of your cards. If…
  • Awesome! Thank you again for participating in Dojo Day.
  • Oh! You would drop this Beastmode into the filter location. You'd put the normal fields in the axis still. 
  • Try using: CASE WHEN `EstimatedCloseDate`> CURDATE() THEN 'Future' ELSE 'Historical' END The single quotes for Future and Historical instead of the backticks should fix it. Let me know how that goes. Thanks.
  • This could be accomplished in a Beastmode. I'd use something like this: CASE WHEN `Date Field` (whatever your date field is called) > CURDATE() THEN `Future` (or whatever you want to call this) ELSE `Historical` (also called whatever you want) END You would just filter the card to "future" and the data would dynamically…
  • Hi there, You can set a company-wide landing page in the admin settings. Let me direct you to the help center from your main menu in Domo. Search for "Setting the Landing Page". If this is regarding a personal landing page, there is currently not a way for each individual user to select their own landing page.…
  • If you just remove out the case statement and just leave the CONCAT, that should give you what you want. You would just create a different Beastmode for each column that applies to the category. 
  • This is a current workaround to get this to work. I wanted to make sure that you note that because this is HTML, you won't be able to export to a Powerpoint and still see the colors. The following Beast Mode examples will help you create conditional formatting on a standard (non-Sumo) table which I've used in the instances…