In Excel, I want to extract the percentile after the decimal point separately. What formula can I extract? For example: 31.1234, the number I need is 2, for example: 31.1254, the number I need is 2,

In Excel, I want to extract the percentile after the decimal point separately. What formula can I extract? For example: 31.1234, the number I need is 2, for example: 31.1254, the number I need is 2,

=--MID(A1,FIND(".",A1)+2,1)
Or:
=--RIGHT(INT(A1*100),1)