put the pounds, shillings and pence into seperate columns.<br><br><b><FONT FACE=monospace><br>column a: 1s. 6p.<br>column b: =VALUE(LEFT(A1, SEARCH("s",A1) - 1))<br>column c: =VALUE(MID(L135, SEARCH("s", L135) + 2, SEARCH("p", L135) - SEARCH("s", L135) - 1))<br>column d: =B1 + C1/12<br></font></b><br><br>column d then becomes a number (in shillings) you can use for calculations.<br>to translate A1 back into your format, use:<br><br><b><FONT FACE=monospace><br>=ROUNDDOWN(A1,0)&"s. "&ROUNDDOWN((A1-ROUNDDOWN(A1,0))*12,0)&"p."<br></font></b><br><br>to calculate the pounds as well, use:<br><br><b><FONT FACE=monospace><br>=IF(A1>20,ROUNDDOWN(ROUNDDOWN(A1,0)/20,0)&"l. "&MOD(ROUNDDOWN(A1,0),20),ROUNDDOWN(A1,0))&"s. "&ROUNDDOWN((A1-ROUNDDOWN(A1,0))*12,0)&"p."<br></font></b><br><br>use the shilling (ie decimal) figure for the data on the chart, and the text representation for the data labels.<br><br>hope this helps.<br> <p>mr s. <

<br><a href=mailto: > </a><br><a href= > </a><br>why does it never do what is says it does in the manual?