Comments
-
@user090374 I have already made a running total graph but I am trying to get it in reverse. In the image you can see that it increases up to 3 but I want it to start at 3 and go down. I tried sorting but all that did was put the sept dates last, which is sort of what I want but people have to read the graph right to left…
-
@hamza_123 have you created custom roles? In our instance, we only give Admin Accounts to IT. We made roles that are more precise then the ones currently provided. We have a couple of roles who have similar access as an admin but without the security features. Those roles have access to view all data but then we have…
-
You would have to do a very long beast mode. You would have to calculate that scale marker in a beast mode and then in that same beast mode compare each month’s value. You should be able you make two case statements, one if it is above and another for below. Then you do the coloring based on that beast mode and choose the…
-
Did you adjust the size of the cards within the dashboard page settings?
-
@user06209 have you tried adjusting your full size settings? I have attached a screenshot of a table I made and then another screenshot of the same table but I added the column widths, text wrap, and changed the full size settings. You can see the column widths are now smaller. You have to adjust the full size settings;…
-
Try allowing text to wrap, I usually just put in random numbers for max width until it looks how I want.
-
You could always add them back using an ETL, if the leading zeros is always constant you can add that number or you could add a set number, say 10, and then do a right substring to get any non-zero first and then the rest zeros. Like this orginal: 1 padded: 00000000001 substring (3 places) : 001
-
Thank you @Jaketh13 The issue will happen and then I just click run again and it works fine. Right not it isnt causing any major issues for me its just more inconvient I have to check that it updated each day.
-
Thank you @DaniBoy !
-
@hamza_123 You can make a sandbox instance here: https://developer.domo.com/dev-sandbox-request and then ask your customer service rep to add the new UI to the sandbox if it isn’t already there. This will allow you to look at the new UI before making it public. When we changed our instance over, I emailed all of our…
-
@simontarry76 You can make groups in Admin section of Domo and then choose that group when you want to schedule a report, (example make an HR group with all the HR users and then send the report to the HR group). I believe they are working on something already to customize the header and footer of an email. One way I have…
-
@hamza_123 You should be able to do a grouped bar graph. Drag each column you want into the Series section.
-
Someone please help with this issue many users are having in another thread: https://dojo.domo.com/t5/Data-Sources-and-Connectors/Google-Analytics-Connector-Quota-exceeded-for-quota-group/m-p/45432#M3148
-
@hamza_123 Page views are unique to each user so you will not be able to save filters to have others see them. However, have you treid using filter cards? You could make a date filter card and then filter it to be for this year. That card then filters all your other cards on the page once a date range is chosen by the…
-
@eric_tetik are you sorting by any columns?
-
@eric_tetik you should be able to use the stacked bar and line chart, just make sure you put the column you want to make the line in the y-axis spot and put the others in the series spot.
-
I figured out that I was selecting both the Report's column App Name as well as our Custom Dimension App Name; this was for some reason causing the data to not refresh. However, for some reason I a am missing almost all of my data from October 2nd. It appears in GA but not in Domo. I have also noticed that some users are…
-
@azu I am seeing the same thing on my datasets, did you find a cause?
-
@Koen yea that would make it hard to look for, we have a similar problem as we have a filter card that has 500 values but we sort it in alpha order to make it easier. If you have a way to group your customers then you could make 2 filter cards, one for type and one for customer. That way you would be dealing with less…
-
@Koen why not just use a filter card to filter on the column customer ? Then when they select it on the page it will filter all the other cards.
-
You are sorting by MIN Test Started which will cause dups to show up.
-
Are you sorting the data by anything? If you sort it by the corrected Test Started then it is not going to count them as distinct.
-
@EF1218 it could be that your admins restricted use of the plug-ins.
-
Drill downs use the date filter from the top-level card but when you drill down it should just show as a filter. The user should be able to click on the filter and change it to their desired date range.
-
Are you doing this in a dataflow or beast mode? If you want to do it in a dataflow you should be able to use the date operations tile to make two different column and then combine them. Are you trying to get "Month name - Year" in the dataset or just to view on a card? Because you can format the date any way you want in…
-
@mbrennanYou can use the Domo Governance datasets, it has this as a dataset as well as a dataset with data flows and their inputs/outputs. It has so many datasets that could help with cleanup. I would recommend just getting them all. It is a connector so you have to have a token and then create each of the 13 datasets with…
-
To get the links I just searched up the emoji and then right clicked on an image and selected copy image address
-
@suwandy To see the image you have to download, for some reason they do not show just by clicking on it (could be computer security settings). I did not realize you were trying to get it in a table; the code I provided was for a summary number. I think to put it in a table you will want to use an image rather than the…
-
Here is a knowledge base article with some other examples. https://knowledge.domo.com/Visualize/Adding_Cards_to_Domo/KPI_Cards/Transforming_Data_Using_Beast_Mode/Adding_Graphics%2C_Links%2C_and_Images_to_Table_Cards_Using_Beast_Mode
-
Hiu @suwandy you have to include the <div> tag like this, I also attached a photo of what it showed. CONCAT('<div style="">', -- Combine data and format '✅', ' Hello ', COUNT(`IMPL_DT`), '</div>' -- end format )