excel - Sorting through large ugly file -


i have excel document is, , looks physically report. need of data. best of coming formula gets me information. document has 88 entries.

you can click image full-size version:

screenshot of spreadsheet

i want come search returns stuff in yellow. idea how done? or manual search type of deal? i'm asking, not because want save 3 hours on doing this, because save time in future. thanks!

as long template in same format, below code should work. tried keep simple possible can see individual steps do. adjust columns data pasted suit. need first create sheet called 'extract' , change occurrence of 'yoursheetnamehere' within code.

sub extract() dim page, company, num, name, projman, totalval, fee string dim r, c integer      c = 1     sheets("yoursheetnamehere").select       r = 1 4680         if left(range("j" & r).value, 4) = "page"          'stores values             page = range("j" & r)             projman = range("j" & r + 2)             totalval = range("j" & r + 4)             company = range("j" & r + 4)             num = range("j" & r + 6)             name = range("j" & r + 7)             fee = range("h" & r + 31)          'pastes values in new sheet called extract (which need create first)             sheets("extract").select             range("a" & c) = page             range("b" & c) = projman             range("c" & c) = totalval             range("d" & c) = company             range("e" & c) = num             range("f" & c) = name             range("g" & c) = fee              c = c + 1              sheets("yoursheetnamehere").select 'you need adjust suit         end if     next r   end sub 

Comments

Popular posts from this blog

How to provide Authorization & Authentication using Asp.net, C#? -

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

How to use Authorization & Authentication in Asp.net, C#? -