GrantSmith Coach image

コメント

  • 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…
    Join Issue GrantSmithによるコメント October 2021
  • 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…
    Join Issue GrantSmithによるコメント October 2021
  • 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…
  • Hi @RobB Are you wanting 30 days prior to the current date or from the date of the row? You might be able to filter your data (using a formula tile and ETL2.0 with a case statement to check if it's less than 30 days ago - alternatively you can calculate 30 days ago from the current date using a date time and then filter…
  • Glad I could help! If you could make sure to mark it as an accepted answer so others can easily find this I'd appreciate it!
    Join in Domo GrantSmithによるコメント September 2021
  • Glad I could help! If you could make sure to mark it as an accepted answer so others can easily find this I'd appreciate it!
  • No it should work in ETL1 or 2 using the Replace Text tile. You just need to make sure to put the regex in the search and $1 in the replace and make sure you click the gear in the search field and select Use RegEx
    Join in Domo GrantSmithによるコメント September 2021
  • Hi @User_32265 You can use a beast mode to compare your date to the latest date and then filter on the result using a window function and a case statement. You can then use this and filter for Latest. If you don’t have window functions talk with your CSM as it’s a simple feature switch CASE WHEN `date` = MAX(MAX(`date`))…
  • Hi @hanmari This issue doesn’t necessarily relate to the connector but how MySQL handles database reads. Whenever you need to read from the database it will issue a lock to prevent the data from changing until it finishes reading all the data it needs. Are you using a database user which has write access as well? It might…
  • Hi @Fadem You can do this in a magic etl dataflow with a regular expression and a replace text tile. Regular Expression: ^CN=([^,]*).*$ You can also just copy and paste the following JSON code into your MagicETL dataflow which should handle things for you: {"contentType":"domo/dataflow-actions","data":[{"name":"Replace…
    Join in Domo GrantSmithによるコメント September 2021
  • Try this: DATE_ADD(`Timecard_Pay_Date`, interval time_to_sec(`Time_Out`) second) Its converting your time string to the number of seconds and then adding that to your date since dates have an inherent time of midnight
    Time Format GrantSmithによるコメント September 2021
  • Hi @Salmas Beast modes are evaluated on a row basis and typically don't know of other rows. So in your case it won't ever see a row with rank 1 if it's on the row of rank 2. When you subtract NULL from something the ending result is NULL which is why you have blank output. You'd need to use the LAG (prior) or LEAD (next)…
  • With Domo when you're using the date selector it determines which month you're currently in and selects days 1-28/29/30/31 (month depending). It sounds like your business definition of a month is different since you're expecting the current month to be August 29th-Oct 2nd. How do you know that August 29th is the first day…