-
Re: Inline editor taking focus on dashboard
I'd recommend logging a ticket with support to have them assist with this as it's an issue dealing with the underlying architecture.1 -
Re: Sorting Day of Week on the X-Axis
You’d need to create another beast mode with a case statement to return a numerical value for the day and order you want CASE WHEN DAYNAME(`date`) = 'Sunday' then 8 ELSE DAYOFWEEK(`date`) end DAYOFWE…4 -
Re: Extra 0 bar in bar chart with beast mode
This is because your beast mode is returning NULL for some records (where none of the conditions are met). You can filter out the NULLs and it will remove it from the chart.2 -
Re: Custom Domo App (Replicating the SugarForce example)
Try /data/v1/leads instead of /data/v2/leads1 -
Re: Create Microsoft SQL server connector to Azure SQL Server - Firewall Issue
Make sure you have the proper IP addresses whitelisted for Azure and Domo to communicate. You can read more about this here:1