ContributionsMost RecentNewest TopicsMost LikesSolutionsRe: Change Date Granularity of a Widget using BloX Hey Astroraf That "Step 2 of 2" when creating action is just a hint displayed when you go into "May Actions" for users to know how to use created action. That also how you would use it in the editor. So answer is yes and yes for your question. Thanks, Wojtek Re: Ignore the Dashboard filter for one of the columns zach_myt you could create dummy date rows as workaround but its not great , plus you would have to do it for all dimensions , not just date. If you try this or find some other workaround let us know 🙂 Re: Ignore the Dashboard filter for one of the columns ALL function appears to have stopped working with new Analytical Engine enabled - im on L2023.2. Does anyone have an idea of alternative solution? Re: Format Widget Title I actually have the same problem, maybe someone here will be able to help. So just to clarify, once font is past size 22px it is not visible in full. You can still increase font but its bottom gets cut off. see below I highlighted where it occurs. Anyone has any ideas how to fix it ? Re: error posting message on community thanks , will surely test next time im posting Re: Replace Values with Text - Pivot Table Widget Hi Ciaran, Not really sure, looks good to me. I tested mine in Chrome and Edge, both works ok see below. We did another implementation of this recently and it worked fine too. Re: Format Widget Title This script effect is only visible once you switch to dashboard view mode rather than design mode. Hope this helps. Wojtek change order of column aggregation in pivot Im looking for way of changing order in which column are aggregated in pivot table. Below you will currently what I have. I have month numbers first and for each month I have Primary and Comparison Value. What client is looking for is to have Primary Value columns 1 to 6 columns , then Comparison Value 1 to 6 columns. So have all columns for 1st Value then all columns for 2nd Value. Column number can vary so cannot hardcode each value separately. Is this possible to achieve with a script? error posting message on community This is error im getting when trying to pick customer service analytics label SolvedRe: Replace Values with Text - Pivot Table Widget HI all, Im on L2023.2 and this works for me: widget.on('ready', function(){ $("div[class*='--col'] div.table-grid__content__inner").map(function(i, cell) { switch (cell.innerHTML ) { case "-1": cell.innerHTML='PASS'; break; case "-2": cell.innerHTML='WARNING' ; break; case "-3": cell.innerHTML='FAIL'; break; default: cell.innerHTML=cell.innerHTML; } }) }) Hope this helps, W