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 strongm 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: sbev
  • Order by date
  1. sbev

    Sequentially Opening Workbooks

    Are ALL the workbooks to be opened by the macro, in this path? Yes Are ALL the workbooks in this path to be opened by the macro? No Please don't put anymore time into this. Thanks to you I have solved 98% of the problem. The Tom, Dick and Harry workbooks are few in number and can be handled...
  2. sbev

    Sequentially Opening Workbooks

    The folder is C:\Work\Database\Data Workbooks\
  3. sbev

    Sequentially Opening Workbooks

    I've used your loop and concatenation to sequentially open the workbooks and modify the Window.Active line. Everything works great. Thanks a lot for your help. How do I set up a pre-determined list? Do I put the names in an array dimensioned as variant?
  4. sbev

    Sequentially Opening Workbooks

    Whoops, I understand your confusion. I've provided a bad description (I'm a newbie at VBA). When the macro is run, Workbook1 is already open and active. So let me try again. Workbook1 open and active. Then (a), (b), (c) and (d). Now comes Windows("Workbook1.xlsx").Activate. Then (e) on. What I...
  5. sbev

    Sequentially Opening Workbooks

    After OPEN (a) sheet 2 to the last sheet are grouped, (b) a cell is copied, (c) the result is pasted into another open workbook (call it Otherbook), (d) B2:K2 is copied from the now grouped sheets in Otherbook, (e) the result is pasted as values into the OPEN book, (f) a certain cell is...
  6. sbev

    Sequentially Opening Workbooks

    Say the first time the macro is run, (let's call it) Workbook1.xlsx is activated. Then I change the name to Workbook2, run the macro, change the name to Workbook3, run the macro again, and on and on.
  7. sbev

    Sequentially Opening Workbooks

    I use an Excel 2007 macro laid out as ... Windows("Filename.xlsx").Activate ... ActiveWorkbook.Save ActiveWindow.Close ... It works fine but I have to edit filename to open up the next workbook and there are 400+ workbooks in the directory. Is there a way the workbook names can be...
  8. sbev

    Symmetric Toeplitz Array

    Thanks salgerman, the solution works great.
  9. sbev

    Symmetric Toeplitz Array

    I need to create numerous symmetric Toeplitz matrices from different beginning 1-dimensional arrays. It is straight forward to do with DO loops, but want to know if it can be done efficiently with intrinsic functions in 90/95. The problem is: Given n numbers, x1, x2, ..., xn, form an n by n...
  10. sbev

    Browser Preview Goes to Remote Site

    Thanks, everything is OK now.
  11. sbev

    Browser Preview Goes to Remote Site

    I'm learning Dreamweaver MX 6.0. I don't know what I did but now when I request a preview of a page in a browser the program hooks up to my remote site and tries to find the directory/file. I want to stick to my local site, the way it worked before. Any ideas on what I can change? Any help...
  12. sbev

    Disk in CD Drive not Recognized by Win 2000

    Win won't disable (uninstall) the drive; it hangs indefinitely when asked to. I've tried booting without power to the drive and then rebooting with it powered up but the same problem remains.
  13. sbev

    Disk in CD Drive not Recognized by Win 2000

    I ejected a disk from my read CD drive during a disk copy and since then Win 2k won't detect a disk in the drive. It says the device and drivers are OK so it seems to be a software problem. The busy light never goes on and no software recognizes a disk. Selecting the drive in Explorer often...
  14. sbev

    Disk in CD Drive not Recognized by Win 2000

    I ejected a disk from my read CD drive during a disk copy and since then Win 2k won't detect a disk in the drive. It says the device and drivers are OK but the busy light never goes on and no software recognizes a disk. Selecting the drive in Explorer often produces the error message...
  15. sbev

    Naming a Cell in Excel

    Thanks for the help. I'm crunching along now.
  16. sbev

    Naming a Cell in Excel

    I want to read through a workbook and on each worksheet give the first nonblank cell in column 15 the local name FirstValue. Count is a loop counter for the worksheets and mRowCtr is a loop counter for the rows on a sheet. Both the following generate error messages: ActiveWorkbook.Names.Add...
  17. sbev

    Deleting/Hiding Rows in Excel

    Thanks DrBowes, I'll try it out.
  18. sbev

    Deleting/Hiding Rows in Excel

    Thanks Sarun. It wouldn't work as given but I added a Then to the Range("D" ... statement and changed the end select to an end if. You have saved me many hours of work,
  19. sbev

    Deleting/Hiding Rows in Excel

    I have a large number of worksheets with 20,000 - 40,000+ rows of data. Irregularly scattered on a sheet are unwanted rows signaled by cell Dxx being blank. How can I scan through a sheet picking out the unwanted rows and deleting or hiding them? Any help appreciated.
  20. sbev

    Changing Cell References Within a Loop

    Hi Skip, Thanks, it works great. Sbev

Part and Inventory Search

Back
Top