コメント
-
Is the key for the column also called "Region"? Or did you set the key as "region"? If you don't remember, you can view it here: https://<instance>.domo.com/admin/governance/attribute-management
-
What is the date column for when your snapshot occurred called? I just put Snapshot Date as an assumption, but yours isn't called that probably.
-
(CASE WHEN LAG(`Status/Stage`) OVER (PARTITION BY `<unique_identifier>` ORDER BY `Snapshot Date` ASC) != 'Parked Revenue' AND `Stage/Status` = 'Parked Revenue' THEN 'Yes' ELSE 'No' END) Add this Beast Mode as a filter, and select Yes. Make sure to replace the unique_identifier field with whatever your unique identifier is…
-
I'm not sure I understand your goal. What do you want the final table to look like and be grouped by?
-
In your Beast Mode, your condition has Snapshot Week Rank = 1 AND Snapshot Week Rank = 0, which cannot both be true at the same. The same is happening to the Status/Stage condition. For week over week, you can use a Period Over Period chart type, change the graph by period to week, and compare week over week.…
-
Are you on consumption? If you are, it is included at no extra cost. If you have consumption but it says request a quote, that just means they didn't put it in your contract. So, you'll have to contact your CSM or AE and ask for access, and they might have you sign a $0 amendment to add it. If you are on the user model, I…
-
If you use a Pro-Code App, you can use React and find a component library that makes things a lot quicker and easier to build. I'd recommend React Hook Forms, AWS Amplify, Chakra UI, React Bootstrap, or Material UI for starters. AWS Amplify also has a way to build forms without code, then import it into React and modify as…
-
This isn't supported at the moment, so it would be best to submit an idea to the Ideas Exchange if one doesn't already exist. For workarounds, you could use a Brick or Pro-Code App to achieve this. Documentation for those can be found here: Domo Developer - Apps Overview.
-
Yeah, the only way you are going to get this is by using a DDX Brick or a Pro-Code App. As far as templates, React typically has the most templates that are the easiest to implement into Domo, so I would go for a Pro-Code App built in React. You can find millions of templates online. Here is a great library from Atlassian…
-
Have you looked into the Domo Finance App yet? Domo Finance | Implementation Guide. It includes a great P&L report that is probably what you're looking for. You will probably have to prep it a bit in a DataFlow or Views Explorer, especially for your margin columns.
-
You're looking for the value domo.policy.managed_email_address as referenced here: PDP Automation
-
If you give them the manage all DataSets grant via a role, that will show all DataSets to them and allow them to edit all of them.
-
You can choose to have a filter card only affect certain cards (or one card) just like you can on a regular dashboard. As for filters, they work the same as a regular dashboard. Users can customize and save a view for just themselves.
-
You can achieve this with the Maximum Items option under Chart Properties > General. Everything outside the limit will be turned into an Other bar, which you can leave or then choose to hide two options down.
-
Jae is correct, this can be achieved via the Product APIs. Authentication to Product APIs documentation: PUT https://<instance>.domo.com/api/content/v1/landings/target/<type>/entity/PAGE/id/<page_id>/<user_id> Where <type> is either DESKTOP or MOBILE.
-
I love this idea. You can actually view the error returned if you inspect the network request in the developer tools of your browser. Most of the time, they actually do have a lot more information about the error, not even just the response from the API. So, it should be easy to just display this to the user.
-
Somehow I missed this post when looking before I created my own. Linking it here, since I don't have the ability to close it. History Keyboard Shortcuts for Undo and Redo — Domo Community Forum
-
You can achieve this via Beast Mode. So, they probably won't spend time adding it. CONVERT_TZ(NOW(), 'UTC', 'America/New_York')
-
This is possible via the Product APIs if you are looking for a workaround. Authentication to the Product APIs documentation: POST https://<instance>.domo.com/api/content/v1/avatar/bulk Body: { "isOpen": false, "transactionId": "<random_guid>", "entityIds": [ "<user_id>" ], "entityType": "USER", "base64Image":…
-
Are you using the default Admin role? They recently changed how Accounts work and there are two new grants for managing Accounts, but they are not given to the default Admin role (silly, I know). I created a custom MajorDomo role that I have, where I add these additional grants. I would try giving yourself these grants and…
-
Great question! For the Action DOWNLOADED, I see three types of Objects: FILE, FILE_REVISION, and ACTIVITY_LOG_CSV. FILE and FILE_REVISION just mean somebody saw an image or file card. They don't actually click a download button, it just downloads them when they visit the page or card and records that event. Largely, I…
-
I haven't used SAP S/4 HANA and, judging by the lack of responses within the long period since your initial post, I would say nobody else has either. I agree with you, what the project manager is saying doesn't sound correct. In my experience, project managers for systems migrations act like they know everything and will…
-
In my experience, the "pairing" doesn't really matter. It typically filters all DataSets regardless. I would try setting up a filter card, built on DataSet A, add it to the dashboard and see if that correctly filters.
-
I was able to share just fine. Can you open up the network console and see if there is a specific error code being returned from the API response? Right click, then click Inspect at the bottom of that context menu, then click Network at the top of that new window. Click the circle with a line through it on the top left to…
-
Are you using the JSON No Code Connector or the XML Advanced Connector? The post title implies the former, but the error message implies the later. Often, these connectors in Domo require you to explicitly add the Accept and Accept-Encoding headers to your request, when services like Postman take care of that for you. Try…
-
Two different schedules like this isn't supported at the moment. Basic vs advanced is two different methods, so when switching to advanced, it disables basic and vis versa. Alternatively, you could set up one schedule, say every Sunday, on the DataSet. Then, you could create a Workflow for the second trigger of last day of…
-
The table card does support incomplete or NULL data, so you have to be filtering it in a way that is removing those rows until they are filled. I'm sure I exactly understand what is going on, but it sounds like you might be filtering the date and those rows don't have those dates yet, so they would be filtered out. If not,…
-
If you're goal is to keep them grouped by Email Address, but not show it, you can always hide that column in the General property options.
-
Do you have permissions to edit alerts? Should be as easy as navigating to the card, either on the card/DataSet or Alerts in the top nav bar, then clicking share on the bottom of the alert, then expanding the already shared with section, then clicking the x on the far right on their name. If you are talking automation, you…