So the actual data in that text field reads: 03'11 x 06'08 ?
You will need to parse the data so you can do the calculation.
If these assumptions are correct, you can use the below function: first two
chars are feet, 5 and 6 chars are inches for width....10 and 11 chars are
feet, 13 and 14 chars are inches for height
Paste this into a query and you can see how I parsed each section out and
the last column is the sq ft calculation:
ELECT size, Left([size],2) AS widthfeet, Mid([size],4,2)/12 AS widthinch,
Mid([size],9,2) AS heightfeet, Mid([size],12,2)/12 AS heightinch,
Left([size],2)+Mid([size],4,2)/12 AS width,
Mid([size],9,2)+Mid([size],12,2)/12 AS height,
(Left([size],2)+Mid([size],4,2)/12)*(Mid([size],9,2)+Mid([size],12,2)/12) AS
SqFt
FROM Table1;
Table1 is whatever your table name is.