Comments
-
Hi @swagner , The fastest option is to indeed stop the Domo Workbench service. This will prevent new jobs from being added to the queue to be run. I've run into issues like this in the past where jobs will be stuck in a "running" state on workbench but the job will have completed in Domo itself. When telling a job to…
-
Hi @eriena You'll want to utilize a recursive dataflow. The knowledge base has several different articles on how to do this. Here's the Magic ETL version: https://domohelp.domo.com/hc/en-us/articles/360057087393-Creating-a-Recursive-Snapshot-DataFlow-in-the-New-Magic-ETL
-
You may also want to look into PDP Policy Autocreation: https://domohelp.domo.com/hc/en-us/articles/360043439353-PDP-Policy-Autocreation Talk with your CSM to get the jar file.
-
CASE WHEN `A.a` = `B.a` AND `A.b` = `B.b` THEN CASE WHEN `A.c` = `B.c` AND `A.d` = `B.d` THEN 1 ELSE 0 END END This will return NULL if A.a and A.b do not equal B.a and B.b resepctively. 1 if c and d match and a and b match 0 if they don't but a and b match
-
Looks like @MarkSnodgrass is a faster typer than me. Gotta work on my stealthy quickness.
-
Hi @Pierce13 When I'm doing period over period comparisons I'll set up a custom date dimension with offsets. This way you can control how your dates are being compared and makes it a little easier and more manageable to calculate metrics like you're wanting. You can read up on this process here:…
-
00:02:00 is 2 minutes, not 2 hours. Have you tried wrapping your seconds in a SUM function before passing to SEC_TO_TIME? SEC_TO_TIME(SUM(`total_seconds`))
-
Hi @loganherzog You're likely correct in that there's too many values for it to find just '8'. If it's a numerical column you can use a Custom Filter PDP and just state Store No between 8 and 8 to do a hacked equals equation. Alternatively you could format your numbers as 3 digit (assuming the highest store number you have…
-
Hours: - Divide the total seconds by the number of seconds in an hour (3600) and drop the remainder (FLOOR) FLOOR(`total_seconds` / 3600) Minutes - Get the remainder seconds after converting to hours then divide that by 60 to convert to minutes. Floor to drop the remainder FLOOR(MOD(`total_seconds`, 3600) / 60) Seconds: -…
-
Hi @Stefan Domo provides some metadata specifically with this information. If you use the Domo Governance DataSets connector you can pull in the "Dataset Schema" dataset which will list all of the datasets and columns in each dataset.
-
Hi @micheleb you can use SEC_TO_TIME to take the number of seconds and format it with hours:minutes:seconds. I’ve done another write up of custom timespan difference here: https://dojo.domo.com/discussion/52682/domo-ideas-conference-beast-modes-time-difference-formatting#latest
-
Hi @cpbwg Typically when I’m dealing with nested data in BigQuery I will unnest the data first as it’s fairly difficult to have Domo do the unnesting. Domo’s architecture expects things to be in a flat tabular format for processing. You can always group your data and then combine values together with a comma using the…
-
Hi @daniel_cruz_2016 This currently isn't an option. I'd recommend adding it as a idea to the idea exchange.
-
Addendum Here's a corrected / updated Magic ETL implementation as the prior version had some incorrect offset values. {"contentType":"domo/dataflow-actions","data":[{"name":"Domo Dimensions -…
-
Hi @user012068 What format is your data in? Is it already aggregated on a monthly basis or is it daily? You'll want to make sure your data is aggregated on a monthly basis and you can then utilize the LAG window function to pull the values for the past 18 months for each month. LAG(SUM(`patient_count`), 0) OVER (PARTITION…
-
I'm not aware of one that's broken out per state in a single dataset however some states websites may have this information. You could also search through data.gov which has some state level datasets. https://catalog.data.gov/dataset
-
Hi @micheleb Are you sorting your results on your card based on the the aggregated / SUM of your values?
-
Make sure you're using the correct layout id. Also you may need to do a PUT request to the writelock endpoint (https://[INSTANCE].domo.com/api/content/v3/pages/layouts/[LAYOUT_ID]/writelock ) to establish a write lock before attempting to save your layout and then issue a DELETE request to the same writelock endpoint to…
-
You can use the page layout API to get the definition and to also save the updated definition. https://[INSTANCE].domo.com/api/content/v4/pages/layouts/[PAGEID] use a GET request to get the definition and a PUT request (with the JSON definition as the body of your request) to save the updated definition Note: This is not…
-
Hi @user048760 You can utilize a beast mode to conditionally add the values together with a CASE statement: SUM(CASE WHEN `Marketing Channel` IN ('Yelp', 'Facebook', 'Google Ads') THEN `Value` ELSE 0 END)
-
@faithscent Domo now offers a new product called "Sandbox" which does what you're looking for where you can promote pages to "production". You can talk with your CSM to get a demo of it. It is a premium feature so it'll be an extra charge. You can read more about it here:…
-
Hi @LCash Just curious if you multiply your numerator and denominator by 1.0 to force them both to be decimals on the off chance that they were being treated as integers and doing integer division instead of decimal / float division. (SUM(column1) * 1.0) / (COUNT(column2) * 1.0)
-
Hi @eriena it looks like you’re wanting to do a offset year over year. I’d recommend using a custom date dimension to calculate the values for the prior year or whatever offset you’re wanting. You can read more about how to do this here:…
-
You can skip the last step of using COALESCE and just leave the values of NULL in place. Then count won't include those and should give you 0 for those.
-
Hi @AnaKS This sounds like a bug with Workbench. I'd recommend logging an issue with Domo Support. In the interim you could utilize a dataset view to drop the column and rename another after you import it into Domo.
-
You’ll need to have a record for each rep for each day. To do this you can import the Calendar.csv from the Domo Dimensions connector. Then run a select columns on your dataset to pull just the rep name. Run that through a distinct tile. Then for both of those use two separate Add Contant tiles to add a column called Join…
-
Hi @FXM32 You're receiving List as a text in your dataset because the CRM API is returning a list of values but the connector can't handle those values. You'd need to get CRM to return one record per CC or To field or you could write a custom connector to handle the data coming from the API properly. You may reach out to…
-
@Joe_M If you could accept the answer so that others can more easily find it I'd appreciate it. You can click on "yes" at the bottom of the answer when it asks 'Does this answer your question?'
-
Hi @Meha Have you tried plotting the durations using the total number of seconds then having your beast mode with SEC_TO_TIME as a tooltip to the set your data label or hover text to that tooltip?
-
Hi @Joe_M The tool tip fields allow you to put additional information into your hover text or data labels without having to generate a new beast mode to display all of the information that you need. You can refer to them in the analyzer settings as %_TOOLTIP1/2/3 etc