-
Re: Grand Total summing the percentage instead of calculating
you'll need to aggregate the data in the beastmode when calculating the variance like below (sum(Column) - sum(Column 1)) / sum(Column 1) *100 I suspect you may just be doing (Column-Column 1) / Colu…3 -
Re: Number Format issues at dashboard/instance level
@Gionniz This can be achieved within company settings. Although it would be nice to be able to choose the language and number format independently as we have users for example n Greece that isn't on …1 -
Re: Decimal/Thousands Character
This can be changed in company settings within the admin.1 -
Re: Period Over Period Multi-Value cards zeroing out when user changes the date
@Joe_M I have experienced this as well so have decided to not use the native period over period controls. (Although they are very nice) @GrantSmith has posted a solution for this that allows for much…2 -
Re: Get the total result based on sum of column 2 / sum of column 1
@Shanmugavel Use sum(`col2`)/sum(`col1`)1