コメント
-
For that you can use a nested beastmode: Create a new beastmode that references your count distinct. AVG(その他の計算フィールド) Then select this new field as your summary number.
-
You would connect the data using the google sheets connector: Ensure that append is the proper update method for your data. If it is, in the dataset settings, you can set your update method to "Append".
-
You'll need to create a beastmode: COUNT(DISTINCT(あなたのフィールド) Then bring this newly created beastmode (calculated field) into your card in the y-axis spot. Here is a video on how to create beastmodes if you never have before:
-
It appears only when you hover next to the name of the furthest right group owner. You'll need the grant "Manage All Groups" to be able to edit closed groups owned by others.
-
The card wouldn't work with no value shown on that level of the sunburst. Logically there needs to be something there if there is an additional level. So for CEO you could have a repeated value of CEO, or N/A which makes sense because Level 2 doesn't apply to the CEO. It's just a limitation of the chart type. You could…
-
It can't handle nulls. For your next level just create a beastmode: IFNULL(`Level2`,'N/A')
-
I would create a bar chart. X-axis would be a beastmode: DAYNAME(date) 3 beastmodes would be 3 bars: 1. MAX(volume) 2. MIN(volume) 3.AVG(volume) I would also sort the bar chart using the following beastmode: CASE WHEN DAYNAME(date) = 'Sunday' THEN 1 WHEN DAYNAME(date) = 'Monday' THEN 2 WHEN DAYNAME(date) = 'Tuesday' THEN 3…
-
Yes, I would create a separate dataset that is for snapshotting purposes.
-
The easiest way to do this is to set the update method of your data to "Append" instead of "Replace". This way, each time the data updates, it is added to the dataset as an append so you maintain a full history. You can set this to run on a schedule (quarterly) but can also manually update the data anytime you please. For…
-
I don't think so, but that would be a question for the Lucid community! If so, it would be by creating an iframe and embedding that in Lucid somehow.
-
You won't want to use count distinct then. Can you share what your visualization looks like? If you have both Customer ID1 and Customer ID2 as fields in the table it will not work as you are expecting.
-
It would also be helpful to see what visualization you are trying to create and your expected view.
-
Beastmodes are case sensitive. I believe you just need to change 'Active' to 'ACTIVE'
-
This article is a great resource: If I understand your question correctly, you'll just need to check "Allow interactions and filtering" in the embed options:
-
It could have something to do with color rules saved to the dataset, although card rules override dataset color rules. But still something to check. Otherwise I would reach out to Domo Support.
-
It already has writeback functionality: They will need to reach out to their CSM to get it enabled.
-
Interesting. The key consideration here is whether or not the PDP policies are configured properly. Is everything currently working as needed?
-
Not really sure I am following what the problem is. If PDP is not enabled on the data, you don't have to share the dashboard or dataset(s) with them for them to receive scheduled reports and see all data. If PDP is enabled, then you will need to add users to the PDP policies as you see fit.
-
Are you trying to stop them from receiving the scheduled report all together? If so, go MORE > ADMIN > Scheduled Reports > click the kebab icon (3 dots) > Edit Schedule > and then add or remove recipients
-
They do not need permission to the dashboard to see the scheduled report. But as you mentioned, if PDP is enabled for data used on the dashboard they will not see (or see a different view) of the cards powered by data with PDP enabled.
-
Where are you looking to see 3rd lowest day? In the dataset provided by Domo in the quickstart, I see the "date" field, which I assume is the date the credit was consumed/charged/whatever, but not necessarily when the 3rd lowest day of storage was.
-
There are a few connectors you could look at: JSON No Code Connector: JSON Advanced Connector:
-
Similar to dashboards, you can only enable drill in place if a drill path has been created for the card. When importing a dashboard to an app, the drill path will come with it. If you did not have a drill path created before importing the dashboard, you will need to navigate to the card outside of the app and create a…
-
During the append, the matching fields being appended default to the most compatible data type between the appends sources. So if you change one source to Date, but the other is Date Time, it will change the data type to Date Time. You'll need to ensure that the data type for all inputs to your append are cast to Date. Add…
-
Edit App > Select the card > Actions > Drill In Place
-
Try: CONCAT(ROUND(Sum(CASE WHEN `To Step` = 'Forward to HM' THEN 1 ELSE 0 END)/(COUNT(DISTINCT `Requisition Number`)),2), ':', ROUND(Sum(CASE WHEN `To Step` = 'Hire' THEN 1 ELSE 0 END)/(COUNT(DISTINCT `Requisition Number`)),2))
-
You can wrap each of the two parts of your concat with ROUND(). CONCAT(ROUND(Sum(CASE WHEN To Step = 'Forward to HM'THEN 1 ELSE 0 END)/(COUNT(DISTINCT Requisition Number)),2) , ':', ROUND(Sum(CASE WHEN To Step = 'Hire'THEN 1 ELSE 0 END)/(COUNT(DISTINCT Requisition Number)),2) )
-
If ultimately what you need is when the status changed, you can use a lag function to check the previous status. If the previous status is different than the current status, then flag that row as when the change occured. If the previous status is null or the same, then flag it as no change. ETL Overview: Rank & Window: 2.…
-
It doesn't look like there are direct integrations between Domo and Zapier, but there are many other tools you could integrate with using the Domo Writeback Connectors. You can gain access to Domo Integration Studio if you are on Consumption. If you are on user license model, you can talk with your CSM about a specific…
-
Hey @pftomas! I was the one who led the "Cultivating a Community of Empowered Users" session. A hand was raised by someone in the audience who said that they link to their confluence documentation from Domo, but that it does not actually live as content in Domo. As mentioned by @Sean_Tully, at Henry Schein One we do all of…