Hi Amin,
Welcome to the forum. In the future, you should start a new thread, rather than adding to an existing one (especially one that's older). However, the answer to your question would be to change the array formula to:
=LARGE(CHOOSE({1;2;3;4;5;6;7;8;9},
MAX(FREQUENCY(IF($A2:$S2=1, COLUMN($A2:$S2)), IF($A2:$S2<>1, COLUMN($A2:$S2)))+0.1),
MAX(FREQUENCY(IF($A2:$S2=2, COLUMN($A2:$S2)), IF($A2:$S2<>2, COLUMN($A2:$S2)))+0.2),
MAX(FREQUENCY(IF($A2:$S2=3, COLUMN($A2:$S2)), IF($A2:$S2<>3, COLUMN($A2:$S2)))+0.3),
MAX(FREQUENCY(IF($A2:$S2=4, COLUMN($A2:$S2)), IF($A2:$S2<>4, COLUMN($A2:$S2)))+0.4),
MAX(FREQUENCY(IF($A2:$S2=5, COLUMN($A2:$S2)), IF($A2:$S2<>5, COLUMN($A2:$S2)))+0.5),
MAX(FREQUENCY(IF($A2:$S2=6, COLUMN($A2:$S2)), IF($A2:$S2<>6, COLUMN($A2:$S2)))+0.6),
MAX(FREQUENCY(IF($A2:$S2=7, COLUMN($A2:$S2)), IF($A2:$S2<>7, COLUMN($A2:$S2)))+0.7),
MAX(FREQUENCY(IF($A2:$S2=8, COLUMN($A2:$S2)), IF($A2:$S2<>8, COLUMN($A2:$S2)))+0.8),
MAX(FREQUENCY(IF($A2:$S2=9, COLUMN($A2:$S2)), IF($A2:$S2<>9, COLUMN($A2:$S2)))+0.9)),
COLUMN(A1))
Remember to confirm using Ctrl+Shift+Enter, not just Enter.