コメント
-
Hi @leeloo_dallas Since you mentioned Magic ETL you can utilize a Rank and Window function to calculate the LAG for the download field. You can then take the current download count for that day and subtract the lag value to get the difference increase for your day. You'll want to make sure to partition based on the year…
-
You and me both @Ainash. Is that the error message you get when selecting 'Run to Here' on your function call to the word_cloud? Are you able to add a transformation to just select the column you need (plus another or just a bogus value) from your input dataset and utilize that resulting table as your input table to?
-
To address the 4 week rolling average you could utilize the LAG window function however you'd need to have 28 different LAG functions (I'm assuming your date has a day grain and not a week grain here. If you have it by week this becomes easier and you can refer to the post @MarkSnodgrass mentioned) called in your beast…
-
Hi @Shumilex I'd recommend utilize a custom date offset where you can compare one date to a different date. In your case you're just wanting to know the value from last week. I've done a write up / walk through of this methodology before. You can find more information here:…
-
Hi @Ainash Does your dataset have a single column? If that's the case the word_cloud function doesn't work with a single column. You can add a dummy column to allow your dataset to be processed. I've written about this previously here: https://dojo.domo.com/discussion/comment/54744#Comment_54744
-
Hi @Lashes You can use some simple math to convert your negative number to a positive one and some trickery with the FLOOR and CEILING functions to get bands of 10. CASE WHEN `days until due` * -1 > 60 THEN '60+ days' CASE WHEN `days until due` >= 60 THEN '-60+ days' ELSE CONCAT(FLOOR(`days until due` / -10) * 10, '-',…
-
@ChristianW - Yes exactly what I'm looking to do but you can't get it without adding a constant value to group on in the group by tile. SQL and Window Functions don't require a column to perform a grand total.
-
Hi @DKCloud9 Have you tried utilizing pydomo? It's all packaged to neatly do this and is a supported method for communicating with the APIs. Are you getting an error message back with your 400 code? Have you tried replicating your API request in a tool like Postman to make sure your body, parameters and url are correct?
-
Glad I could help @Liliana. If you could accept my answer so others can find it easier I'd appreciate it! Thanks.
-
@amehdad21 beat me to it but he's correct, you'd use a Group By tile to aggregate your data grouping on whatever the partition you want to calculate the average across. If you want to do it across your entire dataset you'd need to add a constant value (Add Constant tile) in a new column to group by (Group By tile requires…
-
Hi @Imbesat You need to configure a summary number using your Delta field to allow for alerting. Alerts can't be done off a table card alone but require a summary number. You could use the latest value of the Delta as the summary number to alert you when it's above a certain threshold.
-
My understanding is that Default Filters aren't supported on embedded dashboards currently. You could default all the cards you have on your page to view the last 12 months via the date picker and put a calendar filter card on your dashboard to allow users to select different time frames. Doing a different graph by option…
-
A custom connector may prove to be difficult as it's must be written on ES5 which is an older version. You may be able to hack something together to interact with an SFTP folder, pull all the files and then loop through all of the files but you'll be restricted to what you can utilize. I'd be interested to hear if you're…
-
Hi @ramoshe This is because you're attempting to aggregate (SUM) on an aggregate (AVG) which isn't possible within a beast mode. You'd need to calculate the average of your dataset in your ETL and then use the resulting column in your beast mode. The downside to this is that it won't be respective of any filters you apply…
-
Glad to hear it worked for you @etszyingho . If you could accept the answer above so it's easier for others to find the solution I'd appreciate it, thanks!
-
Hi @etszyingho I'd recommend utilizing ETL 2.0 if at all possible as it will be more performant than MySQL dataflows but it looks like you're at a good spot with your current performance with @MarkSnodgrass 's solution.…
-
LEFT JOIN, RIGHT JOIN and OUTER JOIN will all return NULL values if it can't find a match between your two tables based on your join condition. This website may help explain the differences between the different join types: https://www.w3schools.com/sql/sql_join.asp It's working correctly based on your join columns and…
-
Hi @user089739 Because how the connectors work you'll need to rebuild your datasets and reconnect your cards.
-
Hi @Fadem What exactly is your issue? What are you getting currently and what are you expecting? Which tool are you utilizing to do you join? View? Magic? MySQL? DataSet Views and Magic ETL allows you to specify the join type in the UI. MySQL you need to specify either LEFT, RIGHT or FULL OUTER before your join to do a…
-
Hi @etszyingho As part of your filter you can negate the filter by passing in "not": "True", It would look something like: { "dimensionFilterClauses": [ { "filters": [ { "not": "True", "dimensionName": "ga:pagePath", "operator": "", "expressions": [ "/grammar-and-plagiarism/" ] } ] } ] }
-
@User_32265 That is a bit interesting as both values should be appearing in your list. Are you grouping your data by anything or are you graphing your table by month instead of by day in the date selector? As for your ETL you can use the Group By tile with one caveat. It requires you to group by something. You can add a…
-
You're correct. There are 5 default roles and I confirmed in the API as such. The documentation needs to be updated.
-
Hi @usergru It's not possible with the SFTP connector however have you thought about utilizing workbench, scheduling an SFTP sync to download files in the folder to a DataSync folder and let workbench handle creating any jobs that are needed?…
-
By definition if it’s an internal API endpoint the Domo won’t be able to access it when you attempt to run your script. Your Domo instance wouldn’t typically be in your local network. looks like your issue is that graalMessage is undefined likely because it can’t communicate with your internal api endpoint
-
@Derreck - No. Window functions aren't supported in the formula tile in ETL 2.0. You can use the Rank and Window tile though to do the same thing.
-
Hi @Mike_Shrift What specific issues are you having with the values? Without understanding the problem it's hard to help fix it. Whenever I'm doing Period over Period analysis I utilize a custom date dimension table to help identify this week vs last week for example. I've outlined this process before in the dojo here: A…
-
It's very likely some backend issue that Domo will need to take a look at. I'd recommend reaching out to Domo Support as they'd have more insight into the exact error that's occurring.
-
Do they own anything else besides a dataset like a view, fusion or dataflow? Have you tried utilizing the CLI tool and the swap-owner command to try and swap anything they might have over to a new user? https://domohelp.domo.com/hc/en-us/articles/360043437733-Command-Line-Interface-CLI-Tool
-
Hi @soulless It's a bit tricky as you're attempting to do both a SUM and a MAX inside your case statements. You can try and rewrite it so that your conditions are inside your aggregate. This is a bit tricky because for your Fix Price is attempting to use MAX but your others are using SUM. To get around this you can try to…
-
Then I'd go the second option where you'd need to create a dataset with all of the possible SKU / Date combinations. A starting point as @MarkSnodgrass mentioned is the Date dataset from the Domo Dimensions connector, filter out any future dates to speed up processing, add a constant of 1 can call it 'Join Column'. Get a…
