Convert decimals to area measurement

A

ajmull

I am working on a history project in which I need to convert acreage given in
decimal form to acres, roods and perches (40 perches = 1 rood; 4 roods = 1
acre). Is is possible to do this in Excel?
 
B

Billy Liddel

Ajmul

Returns a text value =INT(A6*4)& " Roods" & " " &MOD(A6*4,4)& " Perches"

I have not tried it for fractions of an acre

Peter
 
N

NoodNutt

G'day Ajmull

Try this:

Formula View:
Columns

A B C
Row 1 Acres Roods Perchs
Row 2 Your input =A2*4 =B2*40

Actual View:

Columns

A B C
Row 1 Acres Roods Perchs
Row 2 1 4 160


HTH
Mark.
 
B

Billy Liddel

Forget my last post Arggh!

Try instead
=INT(A6*4)& " Roods" & " "&(A6*4-INT(A6*4))*160 & " Perches"

where the decimal acreage is in A6

Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top