Forum Discussion
agius
6 years agoRegular Visitor
Creating a Measure by using a fixed value
Hi, I need to create a simple measure but cannot seem to make it work. I need to divide 2 columns and then multiply the answer by 100. So it looks something like this: CTR = (Clicks / Impress...
ryan_mayu
Super User
6 years agoDid 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)]))
)
agius
6 years agoRegular Visitor
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? 🙂