コメント
-
It sounds like you're trying to create a dynamic segment that updates based on filters, reflecting the total spend of filtered paid ad sources in your line graph. Assuming you have a dataset that includes columns like Date, Paid Ad Source, and Spend. CASE WHEN Paid Ad Source IN ('Amazon', 'Facebook') THEN Spend ELSE 0 END
-
I haven't worked with Postgre in a minute. But based on your description and some googling…it seems the error is looking for you to check that you have your protocol set using method as scram-sha-256 in the pg_hba.conf configuration file. Found in the PostgreSQL data directory. I'm not sure it will make a difference to the…
-
Perhaps this might help.. <!DOCTYPE html> <html> <head> <title>PDF Generation Example</title> <script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.4.0/jspdf.umd.min.js"></script> </head> <body> <!-- Your infographic content here --> <div id="infographic"> <h1>My Carbon Offset Infographic</h1> <p>This is where your…
-
That appears to be a Content Security Policy issue….restricts the resources a web page can load based on domain policy. As if your frame (Domo portal) violates the security by attempting to frame another domain.
-
I haven't seen a brick with only one. I thought I had tried remapping all three but I just tried again and it worked. Thanks @MarkSnodgrass.
-
For paginated data, you might try something like this: else if (metadata.report == "Vulnerabilities") { // Define base URL and API key var baseUrl = "https://api.appcheck-ng.com/api/v1/" + metadata.account.apikey + "/vulnerabilities"; var allData = []; // Function to fetch data for a specific page function fetchPage(page)…
-
What you are doing above is basically a solution that should work. The lack of connection shouldn't be because of Domo. I suspect a network issue, firewall, lack of VPN login, or something in the connection to ZD1.
-
You don't need to import a card to reuse. Go to the card and find "add existing card". Search by card titles.
-
Look under admin > tools for schema management. You can alter your datasets there.
-
Click the link that says submit a product idea.
-
Thanks @david_cunningham. It's something we should all be doing. And in most cases - legally required.
-
Could be several reasons: authentication method. URL and parameters such as filters or date ranges. Javascript errors. Security policies. Network issue. You might even try clearing your browser cache and refreshing.
-
Yes, you can have filters across all cards on the app page. The filters do not persist across pages or to other cards. If there's a way in the app studio, I haven't seen it. As for persisting across pages or cards, I'm sure you could create something that stores a filter value from one card and affects a card on another…
-
Instead of using the default numeric format, can you create a calculated field (or beast mode) to convert the number to a string without commas? Use a formula like CONCAT('', number) to ensure the number is treated as a string, which typically won't have commas. CONCAT('', ROUND(number_field, 0)) CONCAT('$',…
-
@LearningNinja, what is available in the dropdown labeled "Format" at the bottom of your screenshot? Is there an option for thousands comma selector there?
-
In the post @ColemenWilson is referencing, the optional group by is the second value. I was formatting the first dropdown and not looking at format on the second dropdown.
-
Can you confirm the API token has full permission to access the events? There may also be something blocking it, like a rate or size limit by the Okta API.
-
There's the issue to be resolved - there is no way to know what a user sees. There should be a shadow/proxy functionality where an admin can shadow an account to see what they see. I would suggest that when an app is shared, a dialog box inquires whether to share all cards rather than it be automatic.
-
I've done something like this by injecting a column into the dataset using a calculated field. As long as the name is the same, including the case. Later, I circled around and used the field with real data.
-
I agree with @ColemenWilson. That isn't currently an option. However, you may be able to create beast mode calculations for median to obtain something usable. Using engineer for one axis and project for another. PERCENTILE_CONT(0.5) WITHIN GROUP (ORDER BY Ticket Cycle Time) OVER (PARTITION BY Engineer, Project) across all…
-
I think its risky to share the parent app if you share a card. I have an app with gauges, dials, tables, etc. This app is intended for an executive team to see the big picture. Someone in a department may be able to view one of the cards, but that does not mean that person should be able to see the cards out of their…
-
Sorry, I don't know what a Phoenix brick template is.
-
You are showing the "Show value as" option. What do you see when you click the "Format >", just below that?
-
I haven't used the email connector, but the documentation says you can specify the Excel Sheet Tab Number (optional).
-
I do the same (aggregate through an ETL), then granulate any further calculations on the javascript code. The one I'm doing right now has a dozen columns with delta over year and % of delta. A couple formulas you may find helpful: const formatCurrency = (value) => '$' + value.toFixed(0).replace(/\d(?=(\d{3})+$)/g, '$&,');…
-
I'm assuming you don't have this working. I'm just now getting a chance to look back at your comments. Here's an example using EXAMPLE SALE DATA, written in the way you have your example setup. HTML: <!DOCTYPE html> <html> <head></head> <body> <div id="collintest"></div> </body> </html> Javascript: var domo = window.domo;…
-
Based on the error, 502, it seems there may be a problem with the other server. The backend server hosting the data.
-
Your code looks correct. I don't see an issue there. Perhaps there's an issue with something else. Check your column names and make sure you follow the case sensitivity, like capitalization. Verify you are on dataset[0].
-
Yes, the trouble is trying to get it to give a most recent based on the data it has filtered or unfiltered. And then displaying it as text (so it can be used as a caption). David's answer doesn't put it in a text box, but it provides the same result in a card. My question was posted last week. And I greatly appreciate…
-
Sure. Create a card with a filter. Or create a report to identify clients with whom you no longer have business based on their order history. MAX([Order Date]) OVER (PARTITION BY [ClientID]) as Latest_Order_Date Filter Clients with No Recent Orders: Once you have the latest order date for each client, you can filter the…