Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: papajohn20
  • Order by date
  1. papajohn20

    Paste Special without selecting

    You can simply find the last row of your data as follows: lrow = Sheets("Input").Range("A1").End(xlDown) then you could write something like this for i = 1 to lrow Sheets("Output").cells(7+i,4) = Sheets("Input").cells(i,1) next i So, with this way, you...
  2. papajohn20

    Average of a field in excel

    Can you be more specific? For exaple how many diferrent value do you have for NAICS? After you group the average og employ by including NAICS you would like to continue grouping ALL the other variables? Do you mind your data to be arranged differently or it must be exactly like you have it? That...

Part and Inventory Search

Back
Top