Forum Discussion
Anonymous
6 years agoNot applicable
Calculated column to count records less than value in same column
Hello All, I am struggling with something I thought was going to be simple enough, but hours later I need help! I have the following dataset: Record SE M R Y Percentile Rank Nor...
- 6 years ago
parry2k
Super User
6 years agoAnonymous here are measaures for you
B2 Value =
CALCULATE (
MAX ( Table1[SE] ),
Table1[Record] = 2
)
Count equal to B2 =
VAR __b2 = [B2 Value]
RETURN
CALCULATE (
COUNTROWS ( Table1 ),
Table1[Se] = __b2
)
Count less than B2 =
VAR __b2 = [B2 Value]
RETURN
CALCULATE (
COUNTROWS ( Table1 ),
Table1[Se] < __b2
)parry2k
Super User
6 years agoAnonymous and output of these measures