Best Of
Re: Get Dataset information using ryuu.js lib
Your GET request is pointing at localhost instead of Domo's backend API because of where it is running. You are running your app locally so it points at local development environment. In production, when the app is hosted, it will probably route the API request domo.get() as you expect. Check to see if there is a ryuu CLI to preview locally. Otherwise, you may need to deploy the app to see it properly.
Re: In a workflow can I duplicate what Webfocus does when RECOMPUTE MULTILINES for a Week End Total?
Sorry but it's a bad security practice for us to open unknown Word, and Excel files. Hopefully this may help a bit.
References:
https://community.ibi.com/forums/topic/11837-hello-i-am-building-a-report-that-uses-row-totals-to-calcul
In the example given in the referenced link, the [on table recompute] ensures the [rate] is recalculated at the recap level. A forum user clarifies: “the RECOMPUTE option causes compute expressions to be reevaluated with the subtotal data.”
Domo workflows don't offer logic for dynamic re-computation as far as I know. They can't re-compute fields at subtotal or group levels. But you could try to replicate the behavior using calculations and ETLs.
Border when hovering over a DDX Brick
Has anyone ever tried to disable to the border when you hover over a ddx brick? Hoping there is a hack for removing it or at a minimum lets me change the colour so it blends in with the background and isn't noticeable.

Re: Creating new users without enabling email invites/notifications from Domo
There is also the option to disable this under notifications in admin.
https://«your instance».domo.com/admin/companysettings/adminNotifications
"Send invite email"

Re: Range filter showing as standard deviation.
Domo is treating it as a measure instead of a dimension because it is stored as a float. That's why your quick filter is showing standard deviation (measure aggregation).
Use Magic ETL to add a step to convert your Order ID from a float to a string or text. Something like
CONCAT(ROUND(OrderID, 0), '')
If you need to keep your original as a float, just use the formula to add another field. That should make the ids function as a list instead of a numeric range.
Re: Header in csv files (via S3 connector) keep changing
Oh oh oh…Mr. Kotter!
I’m liking this idea for a Domo Community Forum “AI Challenge.” Let’s task the community with designing a smart and practical AI solution for problem-solving. Specifically, can you create an AI tool that detects anomalies in column headers and automatically resets them to the correct standard headers?
Re: Problem in importing an Excel Worksheet from network drive
@SPD I've run into the same thing with macro-enabled workbooks and have been able to resolve this by saving a copy in .xlsx format to upload to Domo.
Re: Chart from Sumo Table
You should be able to do page-level interactions. Make sure both cards use the same dataset, or the datasets share a common field like category or date. If the datasets aren't directly connected, create a Magic ETL to join or combine them as a unified dataset. And create the Sumo table and bar chart cards from that new dataset.
On the dashboard you can create one or more filter cards that use the dataset. Such as a dropdown filter that when selected, will filter the data shown on all cards using that dataset.