Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
woo woo is offline
external usenet poster
 
Posts: 3
Default Extract Information to another worksheet

Hi,
I have a worksheet listing training (one row per training session) that was
done and then have columns with an "x" under each person who participated in
that training.

I need to create a means to summarize each persons' training over a certain
time frame (training date is one of the columns), only pulling the rows where
that person has an "x" for participation at a training session. Several
columns from each row would need to be copied to the new worksheet in order
to summarize the training that was attended.

I'd appreciate any advice.

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 130
Default Extract Information to another worksheet

This is something that pretty much would be better suited to write out a VBA
code for, which I'm not sure how much knowledge of VBA you have, if any.
Many times, when I am doing quick and dirty type work, I will use formulas
to do the work for me, but if it involves recursive type actions such as in
this situation, it looks to be that sort of deal, I'll generally go ahead
and write out a macro in VBA to address the issue.

--

Sincerely,

Ronald R. Dodge, Jr.
Master MOUS 2000

"Woo" wrote in message
...
Hi,
I have a worksheet listing training (one row per training session) that
was
done and then have columns with an "x" under each person who participated
in
that training.

I need to create a means to summarize each persons' training over a
certain
time frame (training date is one of the columns), only pulling the rows
where
that person has an "x" for participation at a training session. Several
columns from each row would need to be copied to the new worksheet in
order
to summarize the training that was attended.

I'd appreciate any advice.



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
woo woo is offline
external usenet poster
 
Posts: 3
Default Extract Information to another worksheet

Hi Ronald,

I don't have much knowledge of VBA, is it something I can figure out myself,
or is there some sort of training I can take to learn it? I think that I
could make use of this feature.

Thanks.

"Ronald Dodge" wrote:

This is something that pretty much would be better suited to write out a VBA
code for, which I'm not sure how much knowledge of VBA you have, if any.
Many times, when I am doing quick and dirty type work, I will use formulas
to do the work for me, but if it involves recursive type actions such as in
this situation, it looks to be that sort of deal, I'll generally go ahead
and write out a macro in VBA to address the issue.

--

Sincerely,

Ronald R. Dodge, Jr.
Master MOUS 2000

"Woo" wrote in message
...
Hi,
I have a worksheet listing training (one row per training session) that
was
done and then have columns with an "x" under each person who participated
in
that training.

I need to create a means to summarize each persons' training over a
certain
time frame (training date is one of the columns), only pulling the rows
where
that person has an "x" for participation at a training session. Several
columns from each row would need to be copied to the new worksheet in
order
to summarize the training that was attended.

I'd appreciate any advice.




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 130
Default Extract Information to another worksheet



I'm not sure what your training budget is, but one thing you can do is use
the "Macro Recorder" to help you get started in the learning process. Once
you have recorded, and you start looking at the code, you probably will
start to notice how VBA works to some extent. To get to the code, you can
press "Alt-F11" or you can go through the Tool menu. Executrain does have a
2 day training course on VBA that covers things like the various general
stuff of how to work in the VBA environment such as looking things up and
how to debug for the different types of errors, but yet, it doesn't get into
the deeper levels of the codes nor does it get into good programming
practices.

One warning about the macro recorder, once you start seeing how it works,
you will also need to learn how to edit the code, which will come over time.

Once you learn enough of the VBA stuff, I'm sure you will find a lot of uses
for it.

--

Sincerely,

Ronald R. Dodge, Jr.
Master MOUS 2000

"Woo" wrote in message
...
Hi Ronald,

I don't have much knowledge of VBA, is it something I can figure out
myself,
or is there some sort of training I can take to learn it? I think that I
could make use of this feature.

Thanks.

"Ronald Dodge" wrote:

This is something that pretty much would be better suited to write out a
VBA
code for, which I'm not sure how much knowledge of VBA you have, if any.
Many times, when I am doing quick and dirty type work, I will use
formulas
to do the work for me, but if it involves recursive type actions such as
in
this situation, it looks to be that sort of deal, I'll generally go ahead
and write out a macro in VBA to address the issue.

--

Sincerely,

Ronald R. Dodge, Jr.
Master MOUS 2000

"Woo" wrote in message
...
Hi,
I have a worksheet listing training (one row per training session) that
was
done and then have columns with an "x" under each person who
participated
in
that training.

I need to create a means to summarize each persons' training over a
certain
time frame (training date is one of the columns), only pulling the rows
where
that person has an "x" for participation at a training session.
Several
columns from each row would need to be copied to the new worksheet in
order
to summarize the training that was attended.

I'd appreciate any advice.






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 99
Default Extract Information to another worksheet

Thanks Ronald.

Wendy

"Ronald Dodge" wrote:



I'm not sure what your training budget is, but one thing you can do is use
the "Macro Recorder" to help you get started in the learning process. Once
you have recorded, and you start looking at the code, you probably will
start to notice how VBA works to some extent. To get to the code, you can
press "Alt-F11" or you can go through the Tool menu. Executrain does have a
2 day training course on VBA that covers things like the various general
stuff of how to work in the VBA environment such as looking things up and
how to debug for the different types of errors, but yet, it doesn't get into
the deeper levels of the codes nor does it get into good programming
practices.

One warning about the macro recorder, once you start seeing how it works,
you will also need to learn how to edit the code, which will come over time.

Once you learn enough of the VBA stuff, I'm sure you will find a lot of uses
for it.

--

Sincerely,

Ronald R. Dodge, Jr.
Master MOUS 2000

"Woo" wrote in message
...
Hi Ronald,

I don't have much knowledge of VBA, is it something I can figure out
myself,
or is there some sort of training I can take to learn it? I think that I
could make use of this feature.

Thanks.

"Ronald Dodge" wrote:

This is something that pretty much would be better suited to write out a
VBA
code for, which I'm not sure how much knowledge of VBA you have, if any.
Many times, when I am doing quick and dirty type work, I will use
formulas
to do the work for me, but if it involves recursive type actions such as
in
this situation, it looks to be that sort of deal, I'll generally go ahead
and write out a macro in VBA to address the issue.

--

Sincerely,

Ronald R. Dodge, Jr.
Master MOUS 2000

"Woo" wrote in message
...
Hi,
I have a worksheet listing training (one row per training session) that
was
done and then have columns with an "x" under each person who
participated
in
that training.

I need to create a means to summarize each persons' training over a
certain
time frame (training date is one of the columns), only pulling the rows
where
that person has an "x" for participation at a training session.
Several
columns from each row would need to be copied to the new worksheet in
order
to summarize the training that was attended.

I'd appreciate any advice.







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
Extract information from the list 0-0 Wai Wai ^-^ Excel Worksheet Functions 3 May 12th 06 11:57 AM
Extract information from Multiple sheets bbc1 Excel Discussion (Misc queries) 1 April 18th 06 07:34 AM
Extract information from worksheet bbc1 Excel Discussion (Misc queries) 0 April 5th 06 06:52 AM
Please help: Extract some information from a cell Bobsus5 Excel Discussion (Misc queries) 2 March 7th 06 03:11 AM
how do i extract information from excel and put in certain fields. Novice Excel Discussion (Misc queries) 2 February 9th 05 07:12 PM


All times are GMT +1. The time now is 02:34 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"