Something like that? enter image description here
Number of times appears Account =
COUNTROWS(Tabla)
With this you've the number of times Account appears.
Now the MIN SORT
MIN SORT =
var _MIN = CALCULATE(MIN(Tabla[Sort]))
RETURN
SUMX(VALUES(Tabla[Quarter Year]), CALCULATE(MIN(Tabla[Sort])))
With this you are obtaining the MIN SORT Value.
So you have a table where you can see MIN SORT and the number of times that an Account appears at the time period.
To check how appears in the case that you've more than one customer I've add customer 2.