Comments
-
The developer has utilized iframe code provided by domo to embed it within the HTML application. They assert that there are no issues from their end and within the code.
-
Thank you so much. I was able to create a dynamic unpivot, keeping in mind the future addition of date columns.
-
I tried creating the beast mode again, validated and created the card, still I encounter the same error.
-
can we change the card title font size and color?
-
I have zeroes in a column which are leading to miscalculation of average. I want to create a beast mode calcualtion to avoid the zeroes in my calcualtion and calculate only the rows that have actual values other than zeroes. How do I achieve this?
-
Thank you for your response. It helped.
-
Updating the beast mode gives me " issue request and doesnt display the graph", even though it says updated, when I go back to the beast mode calculation, it displays the old case statement. Any inputs?
-
Also what if I want to specify the blank and zero values as separate categories?
-
@marcel I think the less than operator kind of falsely categorizes the range values and include all possible duplicate values when indicated as less than equal to for each range. Do you Agree?
-
Thank you Marcel and Jones for your answers. Both of the queries worked for me . I am curious to know why my CASE statement with BETWEEN didn't work and I believe they are in order, Aren't they?
-
Please find my beast mode calculation below CASE WHEN `New_Column_Name` < 5 THEN 'Less than 5' WHEN `New_Column_Name` BETWEEN 5 AND 10 THEN '5-10' WHEN `New_Column_Name` BETWEEN 11 AND 20 THEN '11-20' WHEN `New_Column_Name` BETWEEN 21 AND 30 THEN '21-30' WHEN `New_Column_Name` BETWEEN 31 AND 50 THEN '31-50' WHEN…