Re: Managing Data in Cells
I am sitting in front of PC since last 8 hours, somebody plz help me . if not with complete solution , atleast somewhere to start from . anything
Re: Managing Data in Cells
Whats making this difficult is the format of your first sheets data storage. It should be stored in columns and not rows. If you cant change the format then you just have to work harder.
There is a .Find method of the range object. You can specify what to search for and start from location.
Performing a macro is always the easiest way to determine how Excel does certain things.
Since this is an assignment I will guide you. Check the help file for the .Find method. You will start with searching in a loop for the "GENSET" text. Then when found you do a inner loop .Find' ing the particular info you need to copy to sheet2.
1 Attachment(s)
Re: Managing Data in Cells
Thanks Rob for ur consideration but as a matter of fact , i have a text file of first data storage sheet . i copied a part of it in excel to give it a current shape , do u have some betta options if we work on raw data having it as text file ... also its not exactly a assignment . i m telecom engineer and donno much abt vb .. this is a task my boss gave to me and a i have to do it somehow or other [:)]
i have attached text file aswell
Re: Managing Data in Cells
If you do it with a textfile then you will have to read it all into an array and then go line by line looking for your GENSET and other criteria.
Either way will work and both ways have the complications of being stored vertically vs horizontal.