ArborRose Coach

コメント

  • What is your last field doing? Seems like you should be removing that last field from the table. Then put the filter in for >=3. You would then get the list of sites with 3 or more tickets.
  • Your TicketNbr field seems to contain things other than ticket numbers. What are the COUNT 1 / xxxxx values? When doing a condition search for a value, I often write it as {fieldname} IS NOT NULL AND {fieldname} <>'' I use this because sometimes values are NULL, other times they are blank or empty. Which is not the same…
  • A beast mode calculation might be something like the SUM(CASE WHEN TicketNbr IS NOT NULL THEN 1 ELSE 0 END) Then put that calculation into the filter where fieldname is greater than or equal to 3.
  • Your filter appears to be on the site name, not on the # of tickets.
  • You can use the rank and window tile to identify the top 5. Then set color rules.
  • Two solutions that don't really solve your issue but might help. Using column widths, you can set the amount of width for a column. This includes making some fake filler columns. The other way is to use html table with a setting for padding. When I was looking for border styles, I came across a post talking about removing…
  • Btw…those identifiers in the URL are important. They can be used in Python code to identify a dataset to export the data to a local Excel file.
  • They may not be able to share them via Domo, but each URL has an identifier associated to the dashboard. And those are unique. If I copy the URL from my browser and shoot it to a coworker in Teams or email, they can attempt to pull the card. They may not be able to access the dashboard, but there will be a button for them…
  • You can bring in portions of your data as a dataset and then create a ETL flow to append each to compile a larger dataset. Say you want 2 years of data. The previous years data you might want to pull on the week, each Saturday. The current year, you might want to pull the current quarter daily and the past quarters weekly.…
    resursion ArborRoseによるコメント January 2024
  • According to the Domo documentation on Locking or Unlocking a Page, "Locked Pages also cannot be shared by users if they are not the owner or do not have an "Admin" default security role or a custom role with the "Manage All Cards and Pages" privilege enabled."
  • It sounds like you defined formulas on the ETL that are replicated in beast mode on the card of the dashboard. The beast mode on the dashboard would see the calculation already exists in the dataset with the duplicate on the card not being part of the ETL / dataset.
  • I tried background colors and hate the result. In this case I am trying to mimic an excel sheet. Without subheadings and borders, my Domo version isn't very readable. To differentiate columns, the descriptions get out of hand. This is such a basic html ability. I fail to see the usefulness of an html table that doesn't do…
    HTML Table Styles ArborRoseによるコメント January 2024
  • None of these solutions work. A pivot table is inappropriate to my need. A mega table only lets me set the global style for verticals (as far as I can see). I need to set specific columns left and/or right borders so I can "section" the dashboard.
    HTML Table Styles ArborRoseによるコメント January 2024
  • Ashleigh - can I control the borders between specific columns? I need to create visual sections of three or four groups of columns. I'm not seeing that control with a Mega table.
    HTML Table Styles ArborRoseによるコメント January 2024
  • Mega Table should work just fine. Thanks. Any idea how to I could make subheadings?
    HTML Table Styles ArborRoseによるコメント January 2024
  • If your dataset has something you can use to identify the incremental changes, yes. A recursive data set can pull records and append the records to an existing dataset. I would look at doing something similar. You just need to make sure your ETL accounts for changes in records. The following link should give an idea……
  • Michelle is correct. In fact, I am staring at one of my own cards where the grand total shown is completely wrong because of this reason.
  • I too think your DISTINCT is probably the reason. If you are trying to count, I would create the CASE statement to be COUNT(CASE WHEN {conditions met} THEN 1 ELSE 0 END)….without DISTINCT.
  • I do this for year to year trend comparisons using chart type "bar line". I set the data range to the increment (month, quarter, etc). It gives me the current year as a bar and the prior 3 years as line overlays. As the year progresses, we see the performance comparison.
  • I inquired about a similar functionality. I wanted to give users a note taking ability - related to the Domo card. When a specific filter was applied, the user would see the notes written about that selected person or criteria. We had a work session for Domo to show me an example like Colemen's description but they weren't…
    Interactive Card ArborRoseによるコメント January 2024
  • Thanks. I found a formula Grant used in a different thread and using my fields it comes out with the correct days.
    Business Days ArborRoseによるコメント January 2024
  • Neither of these formulas worked properly for me. I am currently in the first week of 2024. Dates from half a year ago are not calculating correctly.
    Business Days ArborRoseによるコメント January 2024
  • I have not tried nesting, Mark. I did try simplifying the criteria. I ran one that was just something simple like… CASE WHEN LOWER(insurance_company_name) LIKE '%aetna%' THEN 'Aetna' END Same thing..it couldn't find it. It's all good feedback, thank you. The fact that Colemen says his comes out correctly, and y'all seem to…
    Confusion - LOWER ArborRoseによるコメント October 2023
  • @ColemenWilson - it appears as a formula tile near the end of an ETL. I have diverted a debug output so I can see the values immediately after the tile executes. I've also taken a few steps of the condition to a test ETL and I get the same results. It simple doesn't see the substring in there.
    Confusion - LOWER ArborRoseによるコメント October 2023
  • There's nothing confidential in this, so I'll show a clip of my actual results. After the formula happens, if no condition is met, the field is populated with a string of X's. The formula that overwrites the X's…
    Confusion - LOWER ArborRoseによるコメント October 2023
  • It's simply not finding the occurrence. It should see that those strings contain "aetna" in whatever case and then give the appropriate new field value "Aetna - Dental".
    Confusion - LOWER ArborRoseによるコメント October 2023
  • Here's link to Powerpoint plug use…
  • If interested in scripting with WinSCP, here's a link to some examples.
  • I do this with code outside of Domo. I created a small visual basic executable that downloads from an sftp site, to a local file. It then copies and renames the file to something easy for me to upload into Domo using Domo Workbench. I also copy a dated version to a folder so I can keep a history. You can also script with…
  • I would use Domo Workbench. It's easy to setup and you can schedule it.
    Domo Python SDK ArborRoseによるコメント October 2023