コメント
-
Can you share a screenshot of what you are seeing?
-
Yep blank column is the easiest. You can hide totals for any column so just hide totals for the blank field to prevent the counts from showing.
-
Hi Muhammad, I am not referring to filter views. I am referring to filter cards which look identical to the screenshot you've provided. You can change the colors on these filter cards to use your company design/colors.
-
Is there a reason you are using DDX bricks for the filters instead of filter cards on the page?
-
Reviewing the screenshot again I see that OMEG-159 is an Epic. The purple icon with the lightning bolt indicates that this is not a ticket, but an Epic. So that is why you are seeing a different description. In Jira, a ticket and an epic can have the same ID.
-
Is she receiving other alerts? Can she view in the Domo the card powering the alert? Lastly, can you have her go to the card, select alerts for that card and then check that she has the email logo selected (blue) as shown below:
-
This is awesome! Thanks Ellibot! 🤖
-
Hi Muhammad, If you search in the Domo Appstore "DDX Brick" the first result will be HTML Easy Brick. You can use this display iframes in Domo. There is also an IFrame inside HTML DDX Brick that can be manipulated to use your iframe. I would recommend using the HTML Easy Brick, and then pasting your iframe in the HTML…
-
Ask them if they've unsubscribed from Domo alert emails. That has almost always been the case when I've had this issue.
-
For this you need to update the dataset. Below is a screen recording on how to do this for a dataflow dataset powered card: Here is how you do it for a non-dataflow dataset powered card:
-
Can you provide screenshots so I can see what you are seeing and need to change?
-
Gotcha, so you are trying to filter the data that is ingested in Domo? Or do you want to apply a filter to a specific card or dashboard?
-
You'll have to adjust the filter to use the new field name. Is it a page filter, page filtered view, quick filter?
-
The filter is not updating or the field is now missing from the dataset? Is the dataset a dataflow output or a Jira Connector dataset?
-
+ INTERVAL 1 YEAR + INTERVAL 1 DAY or + INTERVAL 366 DAY
-
Yep! Just ask ChatGPT and it will basically do it for you! Prompt: Can you take this website and make it an iframe using HTML? If you get stuck let us know!
-
Gotcha! So then you would do something like this: For the Date to the end of the year: SUM(CASE WHEN `dateField` >= `as_of_date` AND `dateField` <= LAST_DAY(CURRENT_DATE() + INTERVAL (12 - MONTH(CURRENT_DATE())) MONTH) THEN `values` END) For the date to 1 year from that date: SUM(CASE WHEN `dateField` >= `as_of_date` AND…
-
SUM(CASE WHEN `dateField` >= '2023-05-31' AND `dateField` <= '2023-12-31' THEN `values` END) SUM(CASE WHEN `dateField` >= '2023-05-31' AND `dateField` <= '2024-05-30' THEN `values` END) If the "as of date" is fixed and available somewhere that can be pulled into the dataset then the beastmodes would be a bit different, but…
-
You could do this in Magic ETL. Use the domo calendar dataset, filter out all non-work days, and then use a lag function to retrieve the value 5 rows back. This would give you the date you are looking for.
-
If you could provide the beastmode, chart type you are using and what isn't working - that would be helpful. Thanks!
-
I have done this with non-DDX brick cards in Domo. It will use the default email client settings on users computers so there may be issues there to resolve. Here is a beastmode that will do what you are looking for: CONCAT('<a href="mailto:emailaddress?subject=emailsubject','&body=','"</a>')
-
You could use a DDX brick and create an iframe to embed your website directly into the dashboard: DDX Brick overview: iframes:
-
Hi @dmurgit1, this is currently not possible. You could, however, create the logic for the PDP policies as a formula that could be copied and pasted in ETL's to make applying logic easier.
-
So do you want 2 different beastmodes? One for the first period and one for the second? If so, here is what the first period would look like: SUM(CASE WHEN MONTH(`Period`) >= 1 AND MONTH(`Period`) <= 6 AND YEAR(`Period`) = 2023 THEN `a_amount` END) The "AND `Item`" part of your beastmode isn't doing anything currently.…
-
Okay. What issues are you running into just displaying the dashboard on the TV?
-
Do you have Domo Everywhere? If so you could embed content in some other page/intranet/portal/whatever and display that on the tv
-
@creativeobs Were you able to solve this?
-
Closest you could get to this would be using variables to swap the axis on a bar chart for example. We've used this method to reduce 3-4 cards on a page down to one card with the axis' being swapped out.
-
You could create a beastmode and use that as the filter. Something like this: CASE WHEN `Variance` >= .15 OR `Variance` <= .15 THEN 'In' ELSE 'Out' END Then drag the beastmode field into your filter in card analyzer.