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 SkipVought 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. TedRSki

    Error 3061 - Too few parameters

    I have tried two different ways to create a query to run to load an Excel spreadsheet. One gives the Run time error 3061 or asks for a list separator. This is the code: Set RS = DB.OpenRecordset("SELECT * from qryRTRACK_EMP Where" _ & "([SDate] Between #" & Forms![frmReports]![Text0] &...
  2. TedRSki

    GHOST EXCEL

    PHV, thank you. That works. I also found a WITH statement that works as well. I use it to find the Last Row for looping and Last Column for looping with an autofit. Both work well. The WITH statement is below. Have you ever done row checking for visibility? I loaded the names from one file...
  3. TedRSki

    GHOST EXCEL

    Rebecca and PHV, I made a copy of the code and commented out a lot of the code that accessed the Excel application. I ran the routine and no ghost. Then I began slowly un-commenting out parts of the code, each time running the routine. Each time Excel closed with no problem. The line of code...
  4. TedRSki

    GHOST EXCEL

    Rebecca, thank you for you help but still a ghost. I even tried switching it over to Sub Routine and still have the ghost. I may end up with just a work around. If I can't get it working here than I was thinking about putting the code into the Workbook Open module so when the user opens the...
  5. TedRSki

    GHOST EXCEL

    RMcCallan, Tried the changes as follows and still have the ghost. But whenever I run the function the first time after making the changes I get the remote server error. Then I reset the code and End Process the Excel.Exe and then rerun the function. It runs and leaves me with the ghost...
  6. TedRSki

    GHOST EXCEL

    Sorry, PHV. The code above is pretty much the code of the function except there are more conditions of the IF statement. All I did was replace XL.ActiveSheet with objActiveWrksheet. But it is all pretty much there. I deleted all of my code comments to try and make the excerpt smaller.
  7. TedRSki

    GHOST EXCEL

    RMcCallan, I tried your suggestion and I still have the ghost. This is how I did it: Function HideRows() Dim ExcelSheet As Object, XL As Object Dim objActiveWrksheet As Object Dim objActiveWkb As Object Dim LRow As Integer Set DB = CurrentDb() Set RSL = DB.OpenRecordset("SELECT * from LABENTRY...
  8. TedRSki

    GHOST EXCEL

    RMcCallan, How did you declare "objActiveWkb.Worksheets"?
  9. TedRSki

    GHOST EXCEL

    PHV, I tried your suggestion and the first time I ran the routine I received the remote server error. Then I ended the Excel process and ran it again and it ran without the server error but still Excel does not close. It has to be something with the LRow and the DO UNTIL loop because I used the...
  10. TedRSki

    GHOST EXCEL

    I hope someone can help. I have tried eveything that is posted here and on other sites. I get the runtime error 462 a lot especially on the LRow line of code. But I have the Ghost Excel which I can't get rid of. Below is a sampling of my code where I use code pointing to an Excel spreadsheet...
  11. TedRSki

    ExcelSheet Row Hide Error - Obj Doesn't Support Propert or Method

    Thank you both for your help. It now works. Now I just have to figure out how to unhide the rows BEFORE loading the data. Plus I am going to try to make the sheet visible while running the Hidden code so I can see what is happening - I have to figure out my IF statement. But I wanted to post the...
  12. TedRSki

    ExcelSheet Row Hide Error - Obj Doesn't Support Propert or Method

    Bob, I tried changing the "Hidden" row to your suggestion - ExcelSheet.Selection.EntireRow.Hidden = True - and I still get the error #438. I also tried removing the Rows(Counter).Select statement and still got the error. The code is extensive otherwise I would post the whole function. Should I...
  13. TedRSki

    Load Access data into formatted Excel sheet using VB

    Thank you both for your input to work my issue. I was able to load the data using the following code which worked well with multiple sheets (SName from one query) and JobCat from another query. SName = RSL("LENTRY") RS.MoveFirst Do Until RS.EOF If (RS("LENTRY") =...
  14. TedRSki

    ExcelSheet Row Hide Error - Obj Doesn't Support Propert or Method

    I have loaded data from a query into an excel workbook with multiple sheets. The load worked fine. Then I reuse a table with the sheet names to try and access the sheets to hide unused rows. The code errors out on the "Hidden" line of code. I do not close Excel before I run this loop so I did...
  15. TedRSki

    Load Access data into formatted Excel sheet using VB

    PHV, thank you for your response. I have been able to work with the a spreadsheet but my problem now is that the sheet starts off blank. I put names on the sheet then run through code to insert the hours but I get just the hours on the sheet. This is the start of my code, could you tell me how...
  16. TedRSki

    Load Access data into formatted Excel sheet using VB

    dhookom, Thanks for the response. The issue is that the Excel spreadsheet has already been created by the Accounting Department. I was able to piece together code from about four or five different threads and I can write to a spreadsheet. Now I just have to work out the VB code and loops to load...
  17. TedRSki

    Load Access data into formatted Excel sheet using VB

    I have an Excel spreadsheet already created with Names in column A and then Thursday's date in Column D, Friday's date in Column E, and so on... with a Total Column with formula in Column K, then Rate of Pay in the next column, and calculated Payoll in Column M. I have the data in Access where...
  18. TedRSki

    CALENDAR FORMS - one coded, one unknown origin

    I am currently using MS Access and Visual Basic coding behind. I have a form called Calendar which displays the month with a Cancel button and a Set Date button. When I run the form that uses the calendar, I have a button to call the calendar form. But when I first click the button a completely...
  19. TedRSki

    How to stop Detail splitting on Report

    Thank you, Joanne, for your input. I found it on the Report design. Because I am sorting by the Employee name when I went to the Sort filter on the design, there is an "option" to Keep It All on One Page or not. I set it to keep it on one page and it works. Thank you again.
  20. TedRSki

    How to stop Detail splitting on Report

    I have a report that prints the employee hours for each day and then sums the hours for the selected period. The Detail section of the report when it reaches the bottom of the report splits with some days on the first page and the rest of the days on the next page. Does anyone know a way to stop...

Part and Inventory Search

Back
Top