×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!
  • Students Click Here

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

Data in a table

Data in a table

Data in a table

(OP)
I need a visual basic code to pick up the data in a table. Please help!

RE: Data in a table

Does it have to be VBA?  Using the ranges in your sample file the formula below will give what I think you want:

=INDEX($C$17:$Q$24,MATCH(H9,$B$17:$B$24,0),MATCH($B$9,$C$16:$Q$16))

If you do want to get the table data into a VBA array then give the table range a range name (say pipe_data) and create a VBA variable of variant type (that could be pipe_data as well) then:

Dim Pipe_Data as variant

Pipe_Data = range("pipe_data").value2


Will get all the data from your table into the VBA array.

Doug Jenkins
Interactive Design Services
http://newtonexcelbach.wordpress.com/
 

RE: Data in a table

(OP)
Thanks Guys!

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!


Resources