Best Of
Re: Autogenerate Filtered Page Deep Link
I would prefer there was a way WITHOUT using pFilters and actually used the filter definition (in acse it changes, etc.), similar to how you can use the object ids to link to a card directly w/:
mycompany.domo.com/page/<page_id>/kpis/details/<card_id>
You can find the id for a filter by looking in the activiy log where Object_Type = "PAGE_ANALYZER"
You can even view it's definition w/ this endpoint:
https://mycompany.domo.com/api/content/v3/pages/analyzer/<object_id>
But AFAIK there isn't an easy url manipulation liek appending /filters/<object_id> that woudl link directly to it or make it save-able as a bookmark, etc.
Re: Analyzer not showing the correct date when filtered
@DavidChurchman Ah, I think that's what was causing the issue! It wasn't the format necessarily but it was graphed by 'Year' which threw off the results. Thank you!

JIRA Rest API connector resulting in null data for a custom field with data-fieldtype="labels"
Why is JIRA Rest API connector resulting in null data for a custom field with data-fieldtype="labels" for the case when multiple values are added on it whereas when only single value is present it is able to fetch it.
August 2025 New Feature Release
Many of you saw the in product announcements last Friday previewing the upcoming feature release. I know that those messages currently disappear so sharing the one pager with a list of all the new features coming soon. Our current plan is to enable these features for customers on Thursday August 7th. We are excited to see all the amazing things you will do with these new features.
Re: Google Analytics Not Matching
@KristinDavis how do you go about pulling the data by Day or by Month from GA4 into the seperate datasets?
Re: Make the Flex Table the GOAT chart
Totally agree with this! I love the Flex Table chart but, for the same reasons I end up using other cards.
Also should enable 100% fill chart type as a selection.
Possibly even html?
Re: Make the Flex Table the GOAT chart
One additional change that could be done on the Flex table is this:
Allow to reverse the colour direction for each field individually, because now you can only reverse the colour direction for the whole table at once. For example if you have revenue and cost in one flex table, one should be green as it increase and the other should be red, which is not supported currently in the flex tables.

Re: SUM(DISTINCT) based on another column
Instead of a DISTINCT, use a FIXED function. Something like this should work:
SUM(SUM(`TOTAL Customer PTS`) FIXED(BY Customer
))
I bookmarked this KB article my first year of using Domo because I used it so often:
https://domo-support.domo.com/s/article/4408174643607?language=en_US
Re: How to secure our form brick when embedding forms publicly
I develop back-end secured applications using Visual Studio, hosted on HTTPS-secured websites with authenticated logins. I then integrate the resulting data into Domo like any other data source.
I avoid public embedding of forms and recommend using Private Embed or SSO Embed via Domo Everywhere to control access. I also limit the collection of personally identifiable information (PII), and never store highly sensitive data—such as Social Security numbers or license numbers—unless it's within a custom, securely designed application.
Domo encrypts data in transit and at rest, but it's critical to ensure your form submissions are transmitted over HTTPS and don't expose raw data. Additionally, it's good practice to implement data retention and deletion policies and to inform users about what data is being collected and how it will be used to support privacy compliance.
Finally, make sure you review your design and plans with your company's security and legal teams to ensure you are aligned with internal policies and regulations.