Forum Discussion
Creating a Measure by using a fixed value
Did you get an error message or not get the expected result?
The brackets in your formula is not correct. Is that a typo error?
CTR =
(DIVIDE(
SUM('Adform - Daily'[Clicks]),
SUM('Adform - Daily'[Impressions)]))
)
ryan_mayu Your suggestion helped! However, I still need to multiply by 100. I do not receive any error but I do not have the expected results.
AlB Now, I have this
CTR =
(DIVIDE(
SUM('Adform - Daily'[Clicks]),
SUM('Adform - Daily'[Impressions)]))
) *100
But it doesn't work. Any suggestions? 🙂
- ryan_mayu6 years agoSuper User
Could you please provide some screenshots or demo file?
What's your expected results and what result you are getting now?
Thanks and BR
- agius6 years agoRegular Visitor
ryan_mayuI have the below and i need to have the (Total of Clicks / Total of Impressions) *100.
However, I cannot use the calculated fields as it takes the average instead of sum and then divide. For the below, the answer would be 0.42%. But obviously, I have larger dataset.
Hope this helps 🙂