Forum Discussion
rahulrackup
4 years agoMicrosoft Employee
Color code instead of color name
Hi Everyone, I have data wich talks about product categories by color code, and my requirement is to show sales amount by color code (see pic 2) instead of color name in table/Matrix format. Belo...
- 4 years ago
Try this one.
Category = SWITCH(TRUE(), cc[Product Categories] = "Green", UNICHAR(128994), cc[Product Categories] = "Red", UNICHAR ( 128308 ), cc[Product Categories] = "Amber",UNICHAR ( 128993 ) )
rahulrackup
4 years agoMicrosoft Employee
Thanks a ton it worked!