Product Feedback Forum
cancel
Showing results for 
Search instead for 
Did you mean: 
Status: Delivered

Is there any way to show all the values in millions even if data is in thousands, the default million formattings will show the values less that a million in the regular format

 

praveenpaul03_0-1663002561046.png

 

 

 

5 Comments

Hi @praveenpaul03,
You can use custom currency format.
Just devide your value by 1 000 000 in the formula and add Symbol M.
Below is an example with thousands.

Angelina_0-1663058954832.png

Best regards,
Angelina

 

 

Hi @praveenpaul03 ,

You can also use below script (if you are using pivot2):

const myTarget = {
type: ['value'],
values: [
{
title:[ 'Value to Million'] // put here desired column
}
]
};


widget.transformPivot(myTarget, function(metadata, cell) {
	cell.content = (cell.value/1000000).toFixed(2) + 'M'
});

harikm007_0-1663059355931.png

-Hari

 

 Hi @praveenpaul03@harikm007@Angelina_QBeeQ 

We have added a new option "Abbreviate all values" in the product. It has been included since L2023.11

Oleksandr_K_1-1699897822901.png

 I would be glad to hear your feedback!

 

 

Hi  

Great news! I have a quick update about your inquiry. Since this functionality is available in our L2023.11 release as mentioned by the awesome @Oleksandr_K, I am going to move this thread into the Product Feedback Forum and mark it as delivered. 

 

 

Status changed to: Delivered