Comments
-
@DataMaven have you noticed this not working lately? I have a flow disabling because of this error even though it is a right join.
-
That is correct. You can not hide datasets from admins.
-
@Ashleigh interesting. So it allows you to share the dataset to user groups if you mass select them in the data center, but not if you are selected into a dataset and then click share. This may just be a bug or oversight. As for what @hamza_123 is trying to do, custom roles won't work unless he demotes users from being…
-
Also, I didn't see the share dataset with user groups in the idea exchange so I added it as well. https://dojo.domo.com/t5/Ideas-Exchange/Share-Datasets-with-User-Groups/idi-p/46374#M7679
-
I didn't see an idea for this already submitted so I went ahead and made one. https://dojo.domo.com/t5/Ideas-Exchange/Limit-Admin-Access-to-Certain-Datasets/idi-p/46372#M7678
-
I found that this isn't possible. I tried to do this a few months ago, but by default, Admins have access to ALL datasets. The only thing an admin can't do is use other users' credentials for datasets unless it is shared with them. The only thing I've been able to do is limit admin access to a select number of people and…
-
Were you able to actually pull in data? I get past authenticating, but then just get an error on the parser editor. From inspecting the page, it looks to be an error on Domo's side. I guess I'll open up another support ticket.
-
Hi Catherine, While I don't fully understand what your desired outcome is, I think there are a couple options. * Create 15 joins in the ETL* One for each id in the Workfront dataset. * Collape columns* You could collapse all 15 id columns into 1 column. The rest of the data will be duplicated onto every line. You could…
-
Hi colinr, There are a couple of ways to do this. This can't be done in Beast Mode because it doesn't support the instr function looking from right to left. * MySQL Flow (this is the easiest option)* trim(right(`Text`, instr(reverse(`Text`), ' | '))) * The "text" field would be your text field. I added the trim in there…
-
The new JSON OAuth is different because it doesn't require as much coding. They advertise "No Code". As for the redirect URL, I'm having the same issue with the new No Code JSON connector. I've put a support ticket in, but have yet to get a response. @DaniBoy can you help us get the redirect URLs for these connectors?
-
There was a problem with the IDE and domo third party connector fixed the issue. Edit: spelling
-
There was a problem with the IDE and domo third party connector help fixed the issue.
-
I think what you are wanting will need to be created in beast mode. That way the weighted average beast mode calculation would change based on what is filtered.
-
I have the same problem, but it seems to only be a problem in the preview as the end result comes out correct.
-
Part of this solution worked for me. What ended up working for me was this: * Sharepoint Account Connector Settings* https://<companyname>.sharepoint.com/sites/<sitename> * When trying to pull data using that account* Credentials* The sharepoint account setup earlier * Report* Document * Server Relative URL* For File*…
-
Part of this solution worked for me. What ended up working for me was this: * Sharepoint Account Connector Settings* https://<companyname>.sharepoint.com/sites/<sitename> * When trying to pull data using that account* Credentials* The sharepoint account setup earlier * Report* Document * Server Relative URL* For File*…
-
Hello, Try and change to this: case when `travel_type` = 'DOMESTIC' or `travel_type` = 'OTHER DOMESTIC' then 'Domestic' else 'International' end You need to use apostrophes instead of quotations. Another way to do this case would be this: case when instr(`travel_type`,'domestic') > 0 then 'domestic' else 'international'…