Forum Discussion
AFra
Helper III
5 years agoNew measure : what am I doing wrong?
Hi all, I created a measure such as : # patients = calculate(counta(Patient[Id]), year(Patient[CreationDate])=2020) it works nicely and counts the number of new patients in 2020. how...
- 5 years ago
# patients =
var y = [Year report]
return calculate(counta(Patient[Id]), year(Patient[CreationDate])=y)
lbendlin
Super User
5 years ago# patients =
var y = [Year report]
return calculate(counta(Patient[Id]), year(Patient[CreationDate])=y)