Part 1:
Part 2:
Every time I think I know what's going on, suddenly there's another layer of complications.
From
https://jonathanweisberg.org/vip/multiple-conditions.html#multiple-conditions
https://www.qeios.com/read/QIH0Q1
When to Adjust Alpha During Multiple Testing - Article (v1) by Mark Rubin | Qeios
proc sort data=have(keep=key1 key2); by key1 key2; run;data want; do count=1 by 1 until(last.key2); set have; by key1 key2; end; run;