#1   Report Post  
Posted to microsoft.public.excel.misc
lochrist
 
Posts: n/a
Default MACRO ?

Being new to the more technical aspects of Excel can anyone point me in the
right direction.
I want to compile a tree volume calculation table.
Example
A1 is diameter
B1 Is Height
C1 Number of trees
D1 Taper Value (which differs according to diameter)
E1 Tree Volume
What i want to do is by selecting a diameter it will automatically select a
taper figure.
I have all the input calculations just need some guidance knowing that it
probably too involved for a complete forum answer;
Thanks

  #2   Report Post  
Posted to microsoft.public.excel.misc
Bill Kuunders
 
Posts: n/a
Default MACRO ?

You need a table of two columns and a vlookup formula.

The left column of the table is the diameter (sorted in ascending order)
second column is the corresponding taper value
Say you are going to enter them in sheet2 A1 to B20
The vlookup formula will be in cell D1
=vlookup(A1,sheet2!$A$1:$B$20,2,false)

where A1 is the diameter and 2 indicates to look up the value in the second
column of the table.

you can extend this down the D column as far as you need to.

entering the table in sheet2 avoids any problems of having to add or delete
rows in sheet1


By the way is there any correlation between the diameter and the taper that
could be translated in a formula?


--
Greetings from New Zealand
Bill K

"lochrist" wrote in message
...
Being new to the more technical aspects of Excel can anyone point me in
the
right direction.
I want to compile a tree volume calculation table.
Example
A1 is diameter
B1 Is Height
C1 Number of trees
D1 Taper Value (which differs according to diameter)
E1 Tree Volume
What i want to do is by selecting a diameter it will automatically select
a
taper figure.
I have all the input calculations just need some guidance knowing that it
probably too involved for a complete forum answer;
Thanks



  #3   Report Post  
Posted to microsoft.public.excel.misc
lochrist
 
Posts: n/a
Default MACRO ?

Thanks Bill for your reply, i will play around with this and see what happens.
Yes there is a formula concerning the taper tarif we use.Can i send it to
you in an email with a worksheet example?

Many thanks
Pete

"Bill Kuunders" wrote:

You need a table of two columns and a vlookup formula.

The left column of the table is the diameter (sorted in ascending order)
second column is the corresponding taper value
Say you are going to enter them in sheet2 A1 to B20
The vlookup formula will be in cell D1
=vlookup(A1,sheet2!$A$1:$B$20,2,false)

where A1 is the diameter and 2 indicates to look up the value in the second
column of the table.

you can extend this down the D column as far as you need to.

entering the table in sheet2 avoids any problems of having to add or delete
rows in sheet1


By the way is there any correlation between the diameter and the taper that
could be translated in a formula?


--
Greetings from New Zealand
Bill K

"lochrist" wrote in message
...
Being new to the more technical aspects of Excel can anyone point me in
the
right direction.
I want to compile a tree volume calculation table.
Example
A1 is diameter
B1 Is Height
C1 Number of trees
D1 Taper Value (which differs according to diameter)
E1 Tree Volume
What i want to do is by selecting a diameter it will automatically select
a
taper figure.
I have all the input calculations just need some guidance knowing that it
probably too involved for a complete forum answer;
Thanks




  #4   Report Post  
Posted to microsoft.public.excel.misc
Bill Kuunders
 
Posts: n/a
Default MACRO ?

Sure,
Should be possible to put it all into one formula.
Bill K

"lochrist" wrote in message
...
Thanks Bill for your reply, i will play around with this and see what
happens.
Yes there is a formula concerning the taper tarif we use.Can i send it to
you in an email with a worksheet example?

Many thanks
Pete

"Bill Kuunders" wrote:

You need a table of two columns and a vlookup formula.

The left column of the table is the diameter (sorted in ascending order)
second column is the corresponding taper value
Say you are going to enter them in sheet2 A1 to B20
The vlookup formula will be in cell D1
=vlookup(A1,sheet2!$A$1:$B$20,2,false)

where A1 is the diameter and 2 indicates to look up the value in the
second
column of the table.

you can extend this down the D column as far as you need to.

entering the table in sheet2 avoids any problems of having to add or
delete
rows in sheet1


By the way is there any correlation between the diameter and the taper
that
could be translated in a formula?


--
Greetings from New Zealand
Bill K

"lochrist" wrote in message
...
Being new to the more technical aspects of Excel can anyone point me in
the
right direction.
I want to compile a tree volume calculation table.
Example
A1 is diameter
B1 Is Height
C1 Number of trees
D1 Taper Value (which differs according to diameter)
E1 Tree Volume
What i want to do is by selecting a diameter it will automatically
select
a
taper figure.
I have all the input calculations just need some guidance knowing that
it
probably too involved for a complete forum answer;
Thanks






  #5   Report Post  
Posted to microsoft.public.excel.misc
lochrist
 
Posts: n/a
Default MACRO ?

Hi Bill, only just seen your reply. Can you provide e mail so that i can
send example work sheet +formulas.
Thanks
Pete

"Bill Kuunders" wrote:

Sure,
Should be possible to put it all into one formula.
Bill K

"lochrist" wrote in message
...
Thanks Bill for your reply, i will play around with this and see what
happens.
Yes there is a formula concerning the taper tarif we use.Can i send it to
you in an email with a worksheet example?

Many thanks
Pete

"Bill Kuunders" wrote:

You need a table of two columns and a vlookup formula.

The left column of the table is the diameter (sorted in ascending order)
second column is the corresponding taper value
Say you are going to enter them in sheet2 A1 to B20
The vlookup formula will be in cell D1
=vlookup(A1,sheet2!$A$1:$B$20,2,false)

where A1 is the diameter and 2 indicates to look up the value in the
second
column of the table.

you can extend this down the D column as far as you need to.

entering the table in sheet2 avoids any problems of having to add or
delete
rows in sheet1


By the way is there any correlation between the diameter and the taper
that
could be translated in a formula?


--
Greetings from New Zealand
Bill K

"lochrist" wrote in message
...
Being new to the more technical aspects of Excel can anyone point me in
the
right direction.
I want to compile a tree volume calculation table.
Example
A1 is diameter
B1 Is Height
C1 Number of trees
D1 Taper Value (which differs according to diameter)
E1 Tree Volume
What i want to do is by selecting a diameter it will automatically
select
a
taper figure.
I have all the input calculations just need some guidance knowing that
it
probably too involved for a complete forum answer;
Thanks









Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Search, Copy, Paste Macro in Excel [email protected] Excel Worksheet Functions 0 January 3rd 06 06:51 PM
Editing a simple macro Connie Martin Excel Worksheet Functions 5 November 29th 05 09:19 PM
Closing File Error jcliquidtension Excel Discussion (Misc queries) 4 October 20th 05 12:22 PM
Help with macro looping and color query function kevinm Excel Discussion (Misc queries) 10 May 26th 05 01:25 AM
Date macro Hiking Excel Discussion (Misc queries) 9 February 3rd 05 12:40 AM


All times are GMT +1. The time now is 03:14 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"