Comments
-
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…
-
If the comma is consistent in your data, you can use the split_part function along with the left and trim functions to get this. It would look like this: TRIM(LEFT(SPLIT_PART(`addressfield`,',',2),3)) Hope this helps
-
@Ashleigh I believe this will work for you: /* check to see if today is Wednesday */ CASE WHEN DAYOFWEEK(CURRENT_DATE()) = 4 THEN /*its Wednesday, so just show the last 7 days */ CASE WHEN `date` >= DATE_SUB(CURRENT_DATE(), INTERVAL 1 WEEK) AND `date` <= CURRENT_DATE() THEN 'Include' ELSE 'Exclude' END WHEN…
-
There aren't a lot of options to help with this. In the General properties, you can set the font size to smallest. Your other option is to incorporate it into the hover text settings so people could view the entire text when they hover over a value.
-
You have one too many ENDs in your syntax. Also, You also have one too many ELSE statements and your final ELSE doesn't have anything, which is likely causing an issue. Try this: case when `Union_Class` = 'A1' then case when `Class` IN ('A1','A2','A3','A4','A5','A6','EO','TB','TA','J','SF','F','SGF','GF') then 'Normal'…
-
To exclude holidays, if your company follows standard US holidays, you can add the Domo Dimensions Calendar dataset, filter to isHoliday = 1 and then left join your main table to this dataset and then filter out any entries where there is a match. If your company has a different set of holidays, you would need to upload…
-
It looks like you are wanting to pivot your data. In which case, I would recommend using the pivot tile in Magic ETL. It is built take multiple rows and turn them into columns and result in fewer rows. Here's the KB article: https://domohelp.domo.com/hc/en-us/articles/360044951294-New-Magic-ETL-Tiles-Pivot#2.
-
You could use the date range filter to show only last week. You could also create a beast mode that would tell you if the date is within the previous week. CASE WHEN `date` >= /* first day of the previous week */ DATE_SUB(DATE_SUB(CURRENT_DATE(), INTERVAL 1 WEEK) , INTERVAL (DAYOFWEEK(CURRENT_DATE()) - 1) DAY) AND `date`…
-
I would suggest adding your Brasil total as another column through the ETL. This way, you can always use it as the denominator no matter which item is selected. If you're not familiar, you can split out part of your data and then add it back. Yours would look different than this, but hopefully this gets you the concept.
-
I don't see that connector in my instance and I don't see anything in the knowledgebase. You can build your own connectors and deploy them to your company's app store. It's possible someone did that at your organization. If there is no publisher information on the connector, you could try reaching out to your CSM or Domo…
-
@NathanDorsch If you are only want to show the data for the rows that contain the last day of each month you could create a beast mode that would evaluate this for you: CASE WHEN datefield = LAST_DAY(datefield) THEN 'Last Day of the Month' ELSE 'Some other day' END You can then add this to the filtering section of the card…
-
Yes, you can use the rank & window and the lag function to get the previous value for each product and then use the formula tile to place it in your main column list. However, first you are going to need to get a complete list of dates. You could get a distinct list of dates from your existing dataset if you know that…
-
I had to set the Account_ID to floating decimal in the datasets configuration so the data type would match, but that was it.
-
I believe you need the Datasets from DomoStats and the Accounts dataset from DomoStats. You can then join the Datasets table to the Accounts table on AccountID.
-
It doesn't look like the DomoStats or Domo Governance datasets contain this information. I believe the comments option is a newer feature, so they may be available through one of these datasets in the future. I would start with asking your CSM about where that data is stored and see if they can arrange something for you.…
-
@user17774 Glad that worked for you. If you can accept any answers that helped you, that will help others in the community.
-
I would suggest adding another group by that aggregates by body part and then join it back to your initial group by. You can then use the formula tile to calculate the percentage. If you are unaware, you can have multiple lines go out from any tile so that you can perform different operations such as this and then join…
-
I have not heard of the Domo Advanced Builder before. My guess is that it is a premium product that costs money. It may also be deprecated as I don't see it in the Knowledgebase articles anywhere. I would suggest checking with your CSM to determine the status and availability of it. You may have come across this article in…
-
Have you tried using the first beast mode that I suggested that creates a new group name and then use the use the activity date field in the date range filter? The date range filter has a lot of great options like current month, last 30 days, etc... Seems like this is all you need.
-
What values does your 'Current_Date' field have in it? Based off your first screenshot, I thought you would be using 'Activity_Date'. Your beast mode would get you MTD since you are looking at the month and the year. If you need all rows with an activity date in the last 30 days, you might try: CASE WHEN…
-
@GrantSmith back to beating me by milliseconds again. 😁 You may be first, but what about better? Only @Golfoholic can answer that. 😉
-
You can create a new group name and then use this field in your visualization to do this. Your beast mode would look like this: CASE WHEN Description IN ('0_0-10_Period','0_11-30_Period') THEN '0-30' ELSE Description END You can then just drag in your value field and it will aggregate it based on what aggregation you…
-
Make sure when you are looking in the preview that you are looking for the new column you just created "Rent Last Changed". Don't look at dRentLastChanged as that will not be altered. Also, if your dRentLastChanged is a datetime or timestamp field, you could use a formula tile and just do this DATE(dRentLastChanged). This…
-
Unfortunately, that does not appear to be an option right now. You might try using one of the new DDX bricks apps where you will have more control of your table styling. If you search for DDX in the appstore, you will see the different options. You might try the DDX HTML Table app as a first option.
