RESOLVED. I discovered a small bug in RB when using weights. If you have a range defined with an empty upper or lower boundary (‘null’
in the syntax below) weighted value will always show up as 0.
pctinrange(Q1,1,null)
However setting the max value to an actual number instead (in this example to 100) solved the problem:
pctinrange(Q1,1,100)
Comments