Comments
-
Hello @Mansa_TCC, If the title in Portuguese or Spanish contains only standard English letters, this might be why you can't filter them. This can be done with Domo Jupyter if you have access to this function. Here is the script: pip install langdetect from langdetect import detect #Function to detect language def…
-
Hi @STEVE T, I used DDX Brick for a similar project. You might find this video useful, as it explains the implementation in detail: https://www.youtube.com/watch?v=eLfWHpQqwbA In the video, it's demonstrated as a comment field, but you can easily modify it to suit your needs. The key point is that it allows direct writing…
-
Hi @miguel_bustamante, What about using Tooltips? As shown in the screenshot, you can toggle between different currencies (in my case) and display the selected currency directly on the chart. I can also switch between Value and Quantity. You can adapt this in your scenario to switch between units and percentages. Please…
-
Hello @Jbrorby , I had a similar problem to solve in the past. I was able to do it with a Python script in ETL: Here is the result table: Copy and past this in your ETL to find the solution and the Python script: {"contentType":"domo/dataflow-actions","data":[{"icon":"python","name":"Python…
-
Hello @Kanokkarn , If the calculations are done in ETL, then you can do what you've described. However, I’ve never been able to do it when the calculations are in Beast Mode. Example when Turnover Type was calculated in ETL: Example when Turnover Types are done in Beast Mode:
-
Hi @Lu_zhang , If you are inquiring about the location of the Python/R tiles within ETL, it appears that based on the screenshot you provided, you do not have access to them. They should be located under the Scripting section.
-
Hello @calebtyrone , Instead of applying a filter, you can create a variable that displays the necessary supplier information on all cards. I believe there may be a workaround to highlight only the section from the selected supplier, but further investigation is required. I quickly put this together—it may not meet your…
-
Thank you, @GrantSmith, for your answer. My goal is to replicate a table that was previously used by management in Excel, so they can easily recognize it and transit to using Domo. In addition to the dashboard, I have included different visualizations, drill-downs, filters, and variables to make the information more…
-
@GrantSmith At the beginning, there was a syntax mistake. I attempted the suggestion provided by @ST_-Superman-_ which resolved the syntax error and the formula is working. Thanks!
-
@colemenwilson I appreciate the suggestion of utilizing ETL, but it isn't suitable for this particular situation. The primary objective is to analyze and compare the Skill Levels of technicians or groups of technicians across various regions, company branches, and countries, considering different products and product…
-
Hi @MichelleH , I found the problem. The "empty" cells were not exactly empty. There was " " in them. But now I'm facing another problem :) In cases like this one: I got:
-
Hi @MichelleH , Actually, I think I was able to do it your way, but I still, have some issues. Here is the result for one Order: I used the LAG function to create the "Previous Service Order" based on the "Service Order" and then used the LAG function again to generate the "Work Type Temp" from "WG Combi". Then, I used the…
-
Hi @MichelleH Thank you for your input, however, I have some concerns. Firstly, I think I require the LAG function instead of LEAD since I want to compare the Order of the previous row, correct? The second problem is that the Work Type column doesn't exist. The formula with the logic I shared in Excel is creating the Work…