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: *

  1. JazzyLee

    Page footer info not printing on all pages in report studio pdf output

    I am able to produce reports in COGNOS 8 Report Studio but have a problem with the page footer not showing on every page. For pages where the data wrapped and caused the row height to expand, the page footer is pushed off the bottom of the page. I see the page footer information on every page...
  2. JazzyLee

    FTP unknown file name from PC to Mainframe

    You are right ... I am even more confused than before. However, after reading your suggestion, I will attempt to write a VB Function that will search the directory for any file with a create date of today, copy that file into a designated file name (append all subsequent files sent in the same...
  3. JazzyLee

    FTP unknown file name from PC to Mainframe

    Amiel, OS on the PC would be Windows XP, Servers are running Windows 2000 and 2003 (depending on which one we use) and the Mainframe is Zos Version 1.6 and running FTP CS Vir6 from the Mainframe. I currently have FTP jobs that are set up to pull a specific file in from the PC and write it to a...
  4. JazzyLee

    FTP unknown file name from PC to Mainframe

    I am not sure this question belong in this forum but will be happy to re-post if pointed to the right forum. I am trying to FTP a file from a specific folder on my PC with the following code: corpftp.corp.life.net (exit=255 resources\corpftpuser Password cd corpftp\cdf\vouchers get GL__*.*...
  5. JazzyLee

    Help with getting files from a folder

    Thanks for the quick response ... I am meeting my deadline on this project. I used the suggestion from PHV to add the path to the file name (strPath_I & "\" & iFile.Name) and it is working like a charm. I also went back to my old DIR codes and cleaned it up using the subroutine from...
  6. JazzyLee

    Help with getting files from a folder

    Combo, This is the code for the second method. I imagine the DIR method would be resolved if I can figure out why this is happening. I get an error on the Workbooks.Open line that says: "'GAAP1100.xls' could not be found. Check the spelling of the file name, and verify that the file location...
  7. JazzyLee

    Help with getting files from a folder

    I have written a code to read the files in a folder that the user selects from browsing for a folder. I want to process all .xls files in the folder and used the 'DIR("*.xls",xlNormal)' directory search. It worked fine once and processed all the files but does not see the files when I run the...
  8. JazzyLee

    SaveAs Fileformat:=xlText adds " " to cell data

    Thanks! I'll build on this. It's a BIG start and a whole lot more than I would have come up with on my own.
  9. JazzyLee

    SaveAs Fileformat:=xlText adds " " to cell data

    dokR, How did you get this to work? I have the same problem. Mind sharing your codes? Thanks much!
  10. JazzyLee

    Subscript out-of-range error with Application.Quit command.

    I have not stepped thru this code in a debug mode on my user's machine but I did on mine (where it works, of course) and the names on both variables are showing up OK. I think I will try to put a break point at the close routine on her machine and then step thru to check the name. I will post...
  11. JazzyLee

    Subscript out-of-range error with Application.Quit command.

    I thought it might have to do with the individual settings in her Excel but couldn't find anything relevant to this problem. This may work if I only knew where this option is so I can turn it off. I looked under Tools/Options but didn't find where to change the setting. Can you please point...
  12. JazzyLee

    Subscript out-of-range error with Application.Quit command.

    I have the following code in a macro that works perfect on my machine and two other PC's. However, one client is having problems with the closing process. As the code stands, when we run the macro the Excel application closes down completely if no other workbooks are open or closes the related...
  13. JazzyLee

    Lookup/Match on two values ... return one

    Zathras, I cannot express my appreciation (and elation) in getting this to work. "Mega Thanks" for the code. I would have never figured this out and it works perfectly. I guess I can pack up and go home now. The rest of the code in this macro will be easy after this challenge.
  14. JazzyLee

    Lookup/Match on two values ... return one

    I would much prefer to run this with the INVALID_CC_LIST workbook unopened but if I comment out this statement Workbooks.Open (INVALID_CC_PATH + INVALID_CC_LIST) I get a "subscript out of range" error on the next line. I tried substituting a combination e.g: Set wkbCCList =...
  15. JazzyLee

    Lookup/Match on two values ... return one

    The data is sorted in the same order your sample is (column A then column B) and you are right on target with the process. I just don't know how to refer to the Invalid_CC_List workbook while going down the row of data in my active sheet. What would the code in the Function be like to return...
  16. JazzyLee

    Lookup/Match on two values ... return one

    How do I send you a sample workbook of the table I am trying to match against? I don't see where it allows insertion of a workbook on this reply. My code that use to work when I only had two columns (A and B) looked like this: Dim strPath_P as string ActiveCell.Offset(0, 1).FormulaR1C1 = _...
  17. JazzyLee

    Lookup/Match on two values ... return one

    I can understand your state of confusion. Guess I missed the most important part of this issue. I am writing VB codes in a macro. Got any sample codes to share that would help me?
  18. JazzyLee

    Lookup/Match on two values ... return one

    The "DGET" code sounds like it would work but your example is using all the information on one sheet. How would I reference the area call "MYTABLE" from a different workbook (called "Invalid CC")? I already have columns A & B with a range name of "Invalids" and column C with a name of...
  19. JazzyLee

    Lookup/Match on two values ... return one

    I have seen a ton of samples on looking up a table to return a value when there is a match but none on doing a lookup and matching two values then returning the third. (Or I am so confused, that I missed it) I am working on Excel 2000 (moving onto 2003 in two months) and need to do the...
  20. JazzyLee

    Cannot open protected workbook ????

    I added a SaveAs statement in my VBA codes for Excel 2000 with a password assigned to the Password:= and WriteRespassword:= parameters and when I execute the macro I have no problem re-opening the workbook when prompted for the password. However, when other users run my macro and create this...

Part and Inventory Search

Back
Top