コメント
-
LAG is available as a beast mode however you need to talk you your CSM to get window functions enabled.
-
Hi @RB1 Page filters are only known within the page. They can't be applied across multiple pages. You could create a duplicate dashboard and add the filters to your cards so they won't be unfiltered by the page filters however each page would need to be filtered separately. If you duplicated all of your cards on the same…
-
Hi @afoote4 I've done some prior write-ups about formatting text with an HTML table card and inserting commas or writing your own summary numbers here: Those may help shine some light on how to tackle your problem. I'll also be doing a video on this and many other beast modes at Domopalooza 2022.
-
Hi @NathanDorsch I'd recommend restructuring your data to have multiple different periods in the same graph. I've done a write up in the past on how to accomplish this here: https://dojo.domo.com/discussion/53481/a-more-flexible-way-to-do-period-over-period-comparisons#latest
-
You should be able to just set the color using color rules in to color settings on your card. You can select your beast mode you’re using for the line and tell it to always be a specific color. with the line + bat chart you have two separate y axis. The left one is for the line and the right one is for the bars. Your graph…
-
You can use a formula tile to splice out the different parts and assemble it as a timestamp: TIMESTAMP(CONCAT ( LEFT(`Date Hour and Minute`, 4), '-', SUBSTRING(`Date Hour and Minute`, 5, 2), '-', SUBSTRING(`Date Hour and Minute`, 7, 2), ' ', SUBSTRING(`Date Hour and Minute`, 9, 2), ':', SUBSTRING(`Date Hour and Minute`, 1,…
-
For reference here's a beast mode I like to use with LAST_DAY to determine if the date value is in the current month. CASE WHEN LAST_DAY(CURRENT_DATE) = LAST_DAY(`date`) THEN 'Current Month' ELSE 'Not Current Month' END LAST_DAY returns the last day in the month for a given date. CURRENT_DATE returns the current date
-
Hi @Katie_Forrest_2022 you can set it to the last 13 months and then use a beast mode to calculate if any dates are doing the current month and exclude them with a filter.
-
@Afolabi @user023583 Domo doesn't provide a dataset containing the MagicETL transformations in a dataflow at this time.
-
Great to hear @elvarliiv . If you could mark my answers as accepted so others could more easily find it I'd appreciate it.
-
@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
