If your value of 25.53 Katha is in cell A1, then in any other cell:
Code:
=INT(A1*0.05) & "-" & INT(MOD(A1*0.05,1)*20) & "-" & ROUND(MOD(MOD(A1*0.05,1)*20,1)*20,2) & "-" & 0
will give:
1-5-10.6-0
and this:
Code:
=INT(A1*0.05) & "-" & INT(MOD(A1*0.05,1)*20) & "-" & INT(MOD(MOD(A1*0.05,1)*20,1)*20) & "-" & ROUND(MOD(MOD(MOD(A1*0.05,1)*20,1)*20,1)*16,1)
will give:
1-5-10-9.6