Comments
-
DATE will work. There’s also DATE_TRUNC
-
You can surround your beast mode in a case statement and check if the date is before today then return the date. This will return null for future dates Put the year in the series on your graph so it’ll be separate lines for each year.
-
I’d recommend using a variable to allow users to input the number of days and use that in a beast mode to filter the card
-
I’d recommend logging a ticket with Domo support as they own the connector and can help diagnose your issue in greater detail
-
Currently, variables are only single-select. I'd recommend adding an idea to the idea exchange to get variables to allow for multi-select.
-
Do the string values look the same when you compare them? Have you done a TRIM on the IDs to remove any trailing spaces? Are they different lengths between the two databases?
-
This is great @AndreaLovesData!
-
The dataset alias is the name that's predefined in the DDX under the dropdown. Typically it'll be something like 'dataset0', 'dataset1' etc.
-
You can add your group names to the partition list PARTITION BY `Year`, `Other Group`
-
You can get the total for each year with a window function: SUM(SUM(`Duration`)) OVER (PARTITION BY `Year`) You can get a running total with another window function: SUM(SUM(`Hours to Complete`)) OVER (PARTITION BY `Year` ORDER BY `Month`) NOTE: Your Month needs to be an actual date or a numerical representation to be…
-
You can do this within a Magic ETL. If you do something like this: This will do a cartesian join between the list of years and your dataset and then filter the records where the year is in between your original start and end years. Add formula is adding a new column called Join Column with a value of 1 for the join. I've…
-
CASE WHEN `field` = '[]' THEN 0 ELSE (LENGTH(`field`) - LENGTH(REPLACE(`field`, ',', ''))) + 1 Some string manipulation options to assist. If it's an empty array list, return 0, otherwise determine the length of the string and subtract the length of the string with the commas removed (count the number of commas). Add one…
-
You can do a running total with a beast mode with a conditional add instead of using the running total on the card. CASE WHEN `Date` < CURRENT_DATE() THEN SUM(SUM(`Sales`)) OVER (PARTITION BY YEAR(`Date`) ORDER BY `Date`) END This will exclude any future dates today and beyond so you only have a line for the months…
-
It is, you can use a FIXED function in a beast mode to do this. Here's some documentation on it: - See Use Case #5
-
What is the formula you're using? You could do something like: CASE WHEN `field` IS NULL THEN 1 ELSE 0 END Then aggregate your dataset and SUM that field to get a count of the records.
-
This isn't an option currently, but I'd recommend this idea to the Idea Exchange.
-
You can use some window functions in a beast mode to do this. Specifically the LAG function. Here's a post on how to do this:
-
The only way to load just the page and not all of the navigation top and sidebars is to use Embed. If you don't want users to log in when doing the embed, you can use a Public embed, but that would give anyone with the URL access to the page.
-
To avoid the issue of comparing a Monday this year to a Sunday last year, for example, instead of subtracting a year from your date, you can subtract 364 days. I've done a write-up about restructuring your data for period over period type analysis that outlines what @ColemenWilson is talking about. You can read more about…
-
If you use the most recent value of the BOOKMARKETVALUEPERIODEND for your summary number you can then configure a card alert to detect a change for more or less than 5%.
-
You can use a beast mode and the lag window function to calculate the percentage difference: (`Login Value` - lag(`Login Value`,1) over(PARTITION BY `Member` ORDER BY `Login Date`) ) / lag(`Login Value`,1) over(PARTITION BY `Member` ORDER BY `Login Date`)
-
You can't embed just the dashboard that way as it'd load the entire page along with the navigation bar. If you want to embed just the page you can use a Private or Public embed option with Domo everywhere.
-
Currently this isn't possible, I'd recommend adding this to the idea exchange.
-
No, most cards don't support hyperlinks. Only table and HTML table cards support it.
-
Is the email the only field you're joining on? Have you used the formula tile to calculate the LENGTH of each of your emails to make sure they're the same length?
-
Is # Devices a beast mode? If it's a column you can select the column in the table and under aggregation select SUM. If it's a beast mode you can wrap it in a SUM value depending on how your beast mode is written.
-
You can group by your partition / bucket that you're wanting to sum across. If you want to do it over the entire dataset, use a formula tile to create a new field called "Join Column" with a value of 1 then group based on that new field. After the group by you can use a join tile to join your aggregated data back to each…
-
You can use the IN operand and give it a list of values you want to include in your filter. There's an example of this on the Domo developer website:
-
You can utilize Magic ETL and the Dynamic Unpivot tile to take your columns and convert it to rows. Here's more information:
-
You're sorting by the SUM first and then sorting by the year. Move the Year to be the first thing you sort on.