Comments
-
@MichelleH is this a beta feature? when I'm in a drill layer, the only options available are "Save" and "Save and Close".
-
@User_32265 you're missing a " in your formua after src=. Try this: CONCAT('<div style="text-align:center"><img height="5px" src="',`Image # 1 Actual Content`,'">','</div>') Also - 5 px is going to be really small, you probably need to increase that to be able to actually see the image.
-
@Mayur_Patil there is a split column tile in Magic ETL that allows you to specify the delimiter to split on.
-
@User_32265 is the URL you are trying to send the user to in a field in the dataset? If so, you would just insert your field name instead of the url for google, like this: CONCAT('<div><a href="',`URL`,'"','"target="_blank">',`URL`,'</a></div>') assuming your field name in this case is URL.
-
@Jessica PDP policies are additive, meaning that since your user is in both the limited and unlimited group, whenever they are viewing that dataset, they will see any data in the Limited group AND any in the unlimited group (this is outlined in the "Adding Users to Multiple PDP Policies" section of the kb document…
-
I really appreciate being able to poll the broader community for ideas when I get stuck (as the only analyst in my company) and seeing the many different ways other people use the platform! (also I am a sucker for gamification so I want the badge too).
-
@CR-eSobylak as an immediate workaround, if your organization has someone with programming knowledge, you can access the dataset tags via the API. The 3rd party support can help you find the right CURL request.
-
@AnwarBham if you (or someone on your team) is familiar with the sdk's, you could create a script to get the datasets and their tag information from DOMO to easily identify which datasets don't have any tags - I've been working on something like this in python since I want to leverage tags as a piece of our governance…
-
@MarkSnodgrass thank you! That's a really helpful starting point and definitely puts me in the right direction.
-
Do you have to enter in database credentials for the connector? If so you could create a domo-specific schema, with access only to the tables you want accessible to domo, and use that to connect.
-
@GrantSmith thanks for the insight!
-
Thank you both for your insights. Unfortunately I need some of the sharpeoint metadata associated with the files so just syncing with a local folder and using workbench doesn't provide the information I need. I know the data are correctly formatted because we have a template based process, so Ill explore the use of a…
-
@user05597 have you reached out to Domo support? We had a similar experience when trying to set up the Sharepoint REST Connector (and I'll be honest, I don't remember all the details) but ended up getting on a zoom call with a Domo Support rep and were able to get the connector set up correctly within an hour call. If you…
-
@GrantSmith thank you!!
-
Is there any documentation on how to translate the schedule values from the json file into human readable details? When I parse out schedule from the json file, I get values like: 0 26 15 ? * 1, which is meaningless. I'd like to know how to turn this into a meaningful value.
-
I think your best bet is to convert your timestamp to just date form and use that to join your two datasets. In a mySQL data flow you can try: select h.*, d.`dt` from `advanced_salesforce_data` h inner JOIN `calendar_domo_dimensions` d on date_format(d.`dt`,'%m-%d-%Y') = date_format(h.`CreatedDate`,'%m-%d-%Y') If you're…