コメント
-
@mhouston Thanks for the detailed write up of your solution!
-
Hi @elvarliiv have you tried using a beast mode to take the MAX of your dimension field?
-
@Ashleigh It's likely an issue with how the connector was written and didn't take into account sub questions. You'd probably need to write a custom connector to handle subquestions or reach out to Domo to see if they can make the necessary changes to the Survey Monkey connector.
-
Hi @keeeirs10 Is this query being done in your output section or as a transform?
-
@CarolineRogg1 If you go into Analyzer on a card do the color rules still exist on the card or are they completely gone? Did the values that you're applying the color rules to change at all? I did have some issues recently where a dashboard decided to move some cards to the Appendix without any user input recently. If you…
-
Hi @D-Rab There's a limit to the amount of rows able to be displayed in the card. Box Plots and Histograms have a pre-set limit of 100,000 rows of data. Other chart types have a pre-set limit of 25,000 rows (although the charting engine may limit the data further depending on how many series are represented). You can now…
-
I’ve seen Cards get cut off during display before. I had to reach out to Domo Support log a bug ticket with them. You could try and resize the card in the page layout to see if that will reset the text or if it will display all of the text if it is a bigger card
-
You could utilize the DomoStats connector and pull in information about cards and pages then use a table card to filter and display all of the input dataset on your given page. You could even set up hyperlink beastmodes to go directly to the dataset.
-
You'd want to split your data so you have two columns, one for customer and one for country. You can use SPLIT_PART to split the strings based on a specific character and which part you want: Customer (get the first part when splitting the string into sections based on the - character: SPLIT_PART(`field`, '-', 1) Country:…
-
Hi @Crystal_Z Currently it's not possible to dynamically change the dataset on a daashboard dynamically. You can use a drill path to display a different card with a different dataset but that would only apply to that single card and not your entire page.
-
Change the way you store your data such that each action has its own row date action 1/1. A 1/1. B 1/2 a 1/3 b etc. You can utilize the calendar dataset from the Domo Dimensions connector to left join your data set t twice based on the ever a date and based on the event b date and append those two together. You may need to…
-
Domo currently doesn’t support the ability to conditionally set the size of the columns and just assumes the best fit sadly.
-
Hi @JonavilCello You can't change the owner of an app, I believe due to security concerns, but you can make yourself an administrator. Alternatively you could re-deploy your app with your account and use that moving forward and delete the old app.
-
Hi @Raj This is something the Labs team would need to investigate as it appears to be a bug in the CLI. Since they'll have access to the source code I'd recommend opening up a ticket with support to help your issue get resolved.
-
@dylang91 Can you just join your budget values to your pivoted dataset based on the date so you have the column for budget?
-
You can use multiple workbench servers on the same domain. It’s possible. You’d just want to watch out so you don’t have different workbench jobs updating the same dataset as it’ll get some odd behavior when attempting to update the dataset. the documentation is talking about multiple instances of workbench running on the…
-
@jstan Are you utilizing SSO for your Domo instance with your Azure AD?
-
it appears you only need the client id and secret. Just put those into your connector and it should handle the part about generating an access token
-
It needs to be a metric (number) and not a dimension (string). Once you have that you can then add multiple other metrics to your chart. With it being a dimension Domo is assuming all of your different series are within that dimension. If you had one row per product instead of all the products on the same row you could use…
-
You'll need a client ID and client secret which you generate from https://developer.domo.com/manage-clients. You'll define the specific scopes needed when creating your client. Once you have those you can then pass those to OneCloud to finish your connection
-
Hi @lvtrujillot You can utilize window functions in beast modes to accomplish this. You'll need to talk with your CSM to get it turned on. I've done a previous write up of window functions and running totals before. You can read up on it here:…
-
I'd recommend doing the splitting out in your custom connector and having a single row for each tag in your dataset, then you can use an ETL to group by and combine them together with a comma afterwards. It's easier to loop through all of your tags and generate one row for each tag.
-
Hi @Pedro_Valverde Have you tried sorting those axis labels in descending order on your card?
-
You'd need separate cards for each graph but you can put multiple charts side by side within a page. Essentially you'd have a page with 20 separate charts / cards on your page. You can resize the different charts to meet your needs on the page.
-
I’d recommend waiting as DDX bricks looks to streamline a lot of the development work and makes it simpler to deploy. It’s uncertain as to how long it’ll be until it’s generally available so if you need the custom app now you’d need to go the traditional route.
-
@MarkSnodgrass - I win 😋
-
What is your beast mode and are you sorting by any values? You may need to create a new beast mode for HOUR(`Timestamp`) and sort on that so it's sorting based on a 0-23 value instead of doing string sorting.
-
@Hiraayub Sadly this isn't possible as you're wanting to aggregate (average) an aggregate (count) which isn't possible. The only way to get close would be to pre-aggreagate your data in an ETL and then take the average in your card but that's not what you're wanting since you want filters to be applied.
-
Credit to @MarkSnodgrass for offering that answer.
-
Magic ETL doesn't support conditional joins so you'd need to set a constant for each of your datasets called 'Join Column' and set to a value of 1, then do a join on both datasets together. After that you can use this expression to filter your results. `URL` LIKE CONCAT('%', `Product ID`, '%') Not the most efficient method…
