Forum Discussion
Different format in Target column
- 6 years ago
Hi SanjeevMurthy ,
As epappu said, it can be implemented with TEXT type. For now, it is not supported to change different format and stain the original data type except text.
I created a measure use the function of IF and FORMAT. You can use it to show the values. When you want to calculate them, you could use the original column.
Measure = IF(SELECTEDVALUE('Table'[Metric]) = "Metric1",FORMAT(SUM('Table'[Values]),"00%"),SUM('Table'[Values]))Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Kudos are nice too.
Hi SanjeevMurthy ,
As epappu said, it can be implemented with TEXT type. For now, it is not supported to change different format and stain the original data type except text.
I created a measure use the function of IF and FORMAT. You can use it to show the values. When you want to calculate them, you could use the original column.
Measure = IF(SELECTEDVALUE('Table'[Metric]) = "Metric1",FORMAT(SUM('Table'[Values]),"00%"),SUM('Table'[Values]))
Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Kudos are nice too.
- SanjeevMurthy6 years agoFrequent Visitor
Thank you all for the suggestions and help. This really helped. Thank you.