Hi Pavan_Kumar17 ,
We had something similar in this post: https://community.sisense.com/t5/build-analytics/adding-symbol-in-pivot-table/m-p/2171.
You can duplicate your measure and change it to tick in the script.
For example, I had a duplicated measure as "sign" and the following script:
const myTarget = {
type: ['value'],
values: [
{
title: 'sign' // put here desired column
}
]
};
widget.transformPivot(myTarget, function(metadata, cell) {
if (cell.value >= 10000) {
cell.content = "🟢";
}
else if (cell.value < 7000) {
cell.content = "🔴";
}
else {
cell.content = "🟠";
}
});
![]()
Hope this helps!
Always here to help,
Angelina from QBeeQ
[email protected]
QBeeQ - Gold Implementation and Development Partner