Comments
-
Hi, If I correctly understood your question, I think you can go to the dataset (or datasets) powering those cards, and bulk change all the cards powered by that dataset to a different one. Hope this helps.
-
Not that o know of. That is my main browser as well. Was suggesting other browser just to see if the behavior is the same.
-
Have you tried another browser? What browser are you using? Regards
-
Hi, Can't replicate your issue. I have Table Cards that commonly export 100k records to excel... Is it possible you are having problems with your download? The number of records exported is always the same of it fluctuates every time you export? Regards,
-
Hi, I think your running into a problem here. Table Cards Cards do not allow alerts on other fields than Summary Number. You can work around this by creating a simple weekly bar chart with the value you want to get the alert on, and then setup the alert on that chart. Hope this helps.
-
Hi, I think that you have to go with the old method of HTML injection in this case. Try this beast mode for Red BackGround: CASE WHEN `ColumnA`='ColumnB' THEN CONCAT('<div style="background-color:#fcbcb7; width: 100%; height:100%; margin:-20px; padding:20px"><a href="#">', `ColumnA`, '</a></div>') END Change the…
-
Have you tried to contact support? They can certainly do that. Regards
-
Hi, Try this: SELECT DATE_FORMAT(p.`date`,'%m-%Y') AS Date, p.`Campaign`, p.`Cost`, CASE WHEN p.`Campaign` LIKE '%Something%' THEN 'Nothing' WHEN p.`Campaign` LIKE '%AB%' THEN 'CD' WHEN p.`Campaign` LIKE '%DE%' THEN 'FG' WHEN p.`Campaign` LIKE '%ST%' THEN 'XV' WHEN p.`Campaign` LIKE '%Change%' THEN 'Protect' Else 'Logo'…
-
Hi, You can get some of that data by asking support to enable DomoMetrics in your instance. Just a heads up: I don't know if it will continue to exist in this form because my DomoMetrics datasets are now 15 days behind, and support didn't yet provide a valid cause for this or solve the issue. Also, the related apps from…
-
Hi, So if your field is really a number it should have no commas and you can use the following beastmode to convert it to a date field with your desired format : DATE_FORMAT(STR_TO_DATE(CONCAT(170913000000,''),'%y%m%d'),'%Y/%m/%d') If it is a string then you should use this one:…
-
Hi, Can you elaborate a little more on this? Is this to be done on a unique card? Regards.
-
Hi, I think that if you are referring to data labels in addition to what @Valiant indicated, you should set the Use Scale Format propertie on Data Label Settings to True. However, after some tests, I wasn't able either to achieve the correct results and from my point of view, it appears to be an ISSUE with Domo.…
-
Hi, Is your Commission field a numeric field? Does DOMO report it in the measures group? If not you can use this BeastMode to convert your Commission field to numeric and then you can add it to your y-axis and select SUM. BeastMode: TRIM(`Your_Commission_Field`)+0 You can also check your excel spreadsheet and make sure the…
-
Hi, Had the same problem in the past and my solution was to rename the columns in a SQL dataflow like this: Select column1 AS MyDesiredName, column2 AS MyDesiredName2 From MyDatasetName I think this can also be done on a MagicEtl, I just don't use MagitEtl. From my point of view, there is no other straightforward way to do…
-
Hi, Do you have the odbc access configuration set to open the db in exclusive mode? If so do you really need that? You can configure this in the odbc driver under options: Hope this helps.
-
Hi, Did the security settings on the folder where the db is located change? Make sure users workbench or impersonated user have read, write, and create rights for the folder in which the database is located. Hope this helps.
-
Hi, What type of dataset? What connector are you using? Regards,
-
Your correct @AS. Version 1.1.10 did correct the issue. It does, however, maintain the problem with concatenated summaries numbers, by not displaying them. Regards.
-
Hi, I had the same issue some time ago. And could not find a solution or documentation on DOMO about this. My workaround was to use a transform for each Common Table Expression and then reference them in another transform or output. Technically it's not the same but it serves the needs. Hope this helps.
-
Hi, I don't think that is possible to achieve. Currently, data labels only display info on the card categories or the predefined macro values. You can find some great information on this here: http://knowledge.domo.com?cid=labelsandhovers Hope this helps.
-
Try syncing your scales on Chart Properties/General/ Sync Value Scales Hope this helps, please do ask if you need more help with this.
-
Hi, I think in your case you should use a Line + Stacked Bar. Some more info on that:http://knowledge.domo.com?cid=stackedbarwithline Then add another category for your target with the following Beast Mode: MONTH(`Date_Field`) * `Monthly_Target` Hope this helps, please do ask if you need more help with this.
-
Hi, You can leave comments inside the transform with the following syntax: --Comment line 12345!"#$% Hope this helps.
-
Hi, From my view, there is currently no way of achieving what you described. It would, however, be a nice feature to have. You can explain this as a new idea in the ideas exchange forum. Hope this helps.
-
Hi, Just an idea... did you check the field data type, on WorkBench Shema Separator? Some times the default data type attributed by workbench is not the one desired, and you can change it. If you change it, don't forget to check the "Allow Schema changes" checkbox in the job settings. Hope this helps.
-
Hi, I'm also having this kind of issue on Chrome, and support as classified it as a feature-request (Waiting for some more info on this!) If your problem is the same as mine you should be able to see the legends if you resize the chrome window while showing the publication or make it full screen. Resuming, if you play…
-
I think if you need to schedule an excel or CSV file upload and the file is on premises you should use workbench tool to do it. It 's pretty straight forward to use i think. You can download it at the Tool Downloads on the Admin Settings page. Here's a good link on workbench: http://knowledge.domo.com?cid=workbench4 Don't…
-
HI, That behavior is very strange as for all I know DOMO weeks by default start on Sunday. I think you have 2 ways to go: You can contact DOMO support and configure your fiscal calendar setting to have the week on Monday, as it appears that your instance is configured to start the week on Tuesday, and then use fiscal…
-
Hi, What connector are you using to upload the excel files? Regards,
-
Just to summarize this with some more information We talked with support in order to try and have to DNS entries pointing to our instance, in a temporary fashion while we modified everything to the new url. Support told us that it's impossible to have 2 DNS entries to the same instance. Given this, our approach is to do an…