Comments
-
You can show the most recent day accessed by clicking on the pencil icon for the Days Acccessed column in the column list and choose MAX. You can also format the date to just show the date in the same edit area by clicking on Format and choose Date Shorthand. To get the difference between the first day accessed and the…
-
You should try what @jaeW_at_Onyx suggested in this thread: https://dojo.domo.com/t5/New-to-Domo-and-Admin-questions/Fill-down-values-in-a-column-in-DOMO-ETL/m-p/51399#M2410 You are on the right track using the Rank function.
-
Unfortunately, the Donut Chart is not built to do that. You would need to switch to the Pie Chart or the Tree Map to display values in each slice without hovering over them.
-
You should be able to get the sort you want with the built in functionality. In the Chart Properties - General, there are two additional properties that you will want to use in addition to the standard Sorting property: Sort on Totals Sort Each Category Play around with these 3 properties (Sorting, Sort on Total, Sort Each…
-
I would try moving your ClientRiskLevel into the series and then see if the color rules take effect. You can move your client name to the tooltip fields then display the client name with the hover text settings.
-
@GrantSmith 's answers are spot on as usual. I think it is worth pointing out that you can use the date filter to only pull the last 12 months and that would save you the work of the beast mode, depending on what you are trying to do. Thought I would mention it as some people forget that it is there and all the options it…
-
I think you are referring to Filter Views that is in Beta right now, but you could be referring to something else.
-
I would get rid of your outer SUM function as I think it not necessary since you are already summing inside your case statement. I would suggest this: CASE WHEN `Year`=2020 AND `Month #` <=`Month # for Today`THEN (SUM (CASE WHEN `Unit price`>100 THEN (`SO Ordered Qty`*`Cases per Pallet`) ELSE `SO Ordered Qty` END) )ELSE…
-
@GrantSmith is highly skilled at Window functions and dates and can probably figure it out for you.
-
You could do this a couple different ways, but here is one for you: CASE WHEN 'Days Ago' >= 1 THEN DATE_SUB('Start Date', interval 'Days Ago' day)ELSE 'Start Date'END Hope this helps.
-
By default, no you can't do this type of work in a beast mode. You can ask your CSM to enable "window functions in beast mode" and then you can use the OVER clause to accomplish. You could do this in Magic ETL very easily with its built-in functionality. You could use a Group By tile to group by ID and MAX(date) and then…
-
Is there always data in all 3 columns: Process, Lathe, Material? If you aren't seeing the left 4 characters of material when the process column equals the lathe column, I would doublecheck that the material column is populated when the process and lathe columns are the same. To troubleshoot, I would use a table card with…
-
If you are using MySQL, you could do this: SELECT Column1, Column2,CASE WHEN column1 = 'datapoint1' THEN DATE_SUB(column2, INTERVAL 1 MONTH)WHEN column1 = 'datapoint2' THEN DATE_SUB(column2, INTERVAL 2 MONTH)END as Column3FROM MyTable You can also do this in MagicETL, which might be worth doing if you are not comfortable…
-
Yes. You can do this in Magic ETL or in a beast mode. You would use the Set Column Value tile in the ETL. Here's a link to how to use it: https://knowledge.domo.com/Prepare/Magic_Transforms/ETL_DataFlows/04ETL_Actions%3A_Edit_Data#Set_Column_Value In a Beast Mode, you would use the IFNULL function like this:…
-
When viewing a card (not editing) scroll down below the graph and click on the name of the dataset. This will take you to the dataset details page. Click on the 3 dots in top right corner of the page and choose Export Data. This will download the data for you.
-
I have found that I can't trust the Preview window, regardless of how many rows I tell it to be in the preview. The row amount you choose (10k, 100k, etc.) only affects how many rows it will pull from your input datasets. It doesn't affect how many rows will show in the tile preview windows. Unfortunately, this means that…
-
Yeah, Domo doesn't support a comma separated list in the search box unfortunately. I can think of 3 hacks that would get you close to what you want to do: 1. Create a beast mode that has your e-mail addresses by using a case statement like: CASE WHEN 'email' IN (<your list of e-mail addresses>) THEN 'Y' ELSE 'N' END You…
-
You can turn on Quick Filter for the e-mail address field. This will make it show up for all users of the card and they can use the search box to search the list and select as many as you want. If you want to group the e-mail addresses, you can create a Beast Mode with a CASE statement that would group e-mail addresses…
-
Yes, you can use one instance of Workbench to connect to multiple Domo instances. Just click on the key icon (Accounts page) and then enter the Domo instance that you want to connect to. You'll have to have credentials for each instance, but other than that, it will work just fine.
-
Yes, you can overcome this with a few additional steps. Here is what you would want to do: 1. Add a 3rd connection from the input to dataset to a Select Columns tile and just select the month column. 2. Connect a Remove Duplicates tile to that tile and choose Month to get a distinct list of months from your dataset. 3. Add…
-
You can actually get this field populated pretty easily using Magic ETL. Here's a picture of what your ETL would generally look like: Here's a breakdown of the steps in the ETL 1. Split your input dataset into to two datasets by using the filter tiles. Filter one to Product equals AUM. Filter the other one to not equal to…
-
@jaeW_at_Onyx is correct that you won't be able to do this in a beast mode, but you should be able to do this with the Rank & Window tile in Magic ETL utilizing the SUM and LAG functions. Here's a link to the KB article: https://knowledge.domo.com/Prepare/Magic_Transforms/ETL_DataFlows/03ETL_Actions%3A_Rank_and_Window You…
-
Spoiler (Highlight to read)The following did not give me an error when trying it in Domo's MySQL : SELECT CAST(NULL as char) as mycol You could try that and see if that works for you.The following did not give me an error when trying it in Domo's MySQL :SELECT CAST(NULL as char) as mycolYou could try that and see if that…
-
You should use the DATEDIFF function to get this. You can also simplify your statement due to the way CASE statements process. Here is what I would suggest: casewhen DATEDIFF(CURRENT_DATE(),`CD (Start)`) < 90 then '3 Months'when DATEDIFF(CURRENT_DATE(),`CD (Start)`) < 180 then '3-6 Months'when DATEDIFF(CURRENT_DATE(),`CD…
-
If you edit your dashboard, you can click on Edit Content on each card and select Change Interaction. Then choose Open Card Details in New Tab. You'll have to do it for each of them, but then they will open in a new tab when you click on them.
-
I would consider using a different type of card for this type of visualization. Have you tried using a Scatter card and using the time as the x-axis?
-
Try going to the associated dataflow for that dataset and click on history. It is likely that the dataflow failed and that is why you are seeing the exclamation point on the resulting dataset.
-
In section 1 of your Group By tile, you would want to add your 4 columns (Date, Product, Publication, Channel). In section 2, select your Revenue column and choose Sum and give it a name such as Total Revenue. This should give you the total revenue when those 4 columns are the same.
-
Thanks @GrantSmith ! This worked great. I did the calculations in MS SQL, which doesn't have the MOD function, but it does a similar which just uses the percent sign. It ended up looking like this for the remaining days calculation. DATEDIFF(DAY,`EndDate`, `StartDate`)%7
-
I would try the String Operations and use the trim spaces function. There are likely some hidden spaces causing Domo not to see the names as the same. You could also quickly do this in a beast mode to see if that fixes it. Just use the TRIM() function to remove the spaces and then drag the new beast mode field into your…
