Forum Discussion
SachinC
9 years agoHelper V
Percentage DAX Formula
Hi, I want to create a percentage figure, i.e. x%, from two text fields. It's basically calculating click through rate as a %. I've got a count of my audience for a mailshot in a column, a count of...
SerenatMacar
4 years agoNew Member
Hi! Try to create a measure like this and use FORMAT to get the percentage value.
BluePercentage =
BluePercentage =
var __bluePerc = DIVIDE([BlueNumber], [BlueNumber]+[GreenNumber])
return "The"&FORMAT(__bluePerc, "Percent") &" of the values are blue."