Recent content by oxicottin

  1. oxicottin

    Solved Import from excel and delete unwanted data

    Thanks MajP, I really appreciate it and the explanations of each is great that way I can see what going on and how to do it!
  2. oxicottin

    Solved Import from excel and delete unwanted data

    I'm just trying to automate the process, if I was to open the excel workbook I might as well just use Excel and automate it from that or copy and paste it into my test database. I appreciate your input, happy holidays and have a great new year!
  3. oxicottin

    Solved Import from excel and delete unwanted data

    I am attaching the database and a excel sheet. In the excel sheet the yellow cell row is the blank row and the green highlighted number is what I need in a separate temp table. The database I attached I ran the code so that the table reflects what I'm after in that table. Sorry had to .zip the...
  4. oxicottin

    Solved Import from excel and delete unwanted data

    The code below works because I just deleted everything after the row of dates now I need to figure out how to get that number I highlighted in green? Suggestions on that? Private Sub cmdImport4WeekSchedule_Click() Const msoFileDialogFilePicker As Long = 3 Dim fDialog As Object...
  5. oxicottin

    Solved Import from excel and delete unwanted data

    Hello, I need to import from Excel some data BUT not all data so after I import, I need to delete what is not needed. Using the below code behind my button to import it imports all the data from the workbook. In the image I need to only collect the data above the red line I drew in the image and...
  6. oxicottin

    Solved Need help with a new user that can't enter data

    I'll keep that in mind next time... Thats a good indicator to show if there are read/write permissions!
  7. oxicottin

    Solved Need help with a new user that can't enter data

    Ok I found the issue... My admin messed up on permissions, its fixed now! Thanks all for your help!
  8. oxicottin

    Solved Need help with a new user that can't enter data

    Not sure how to check that. I always give them thier accde and tell them keep it on thier desktop and when i do the trusted locations i just trust the location that the backend is on and thier desktop and it always works
  9. oxicottin

    Solved Need help with a new user that can't enter data

    Yes, but It allows anyone to use except for a few selections on the switchboard for me. I have been using it that way for over two years with new users all the time with no issues. It did say when she first opened it, it had that Read-Only banner, but I changed the trusted locations, and it went...
  10. oxicottin

    Solved Need help with a new user that can't enter data

    Hello, I have a database that has a front end and back end, and I distribute an .accde to each user and if I haven't before I change the "Trusted Locations" so it isn't a read only etc. and this has always worked over the years. Recently I have a new employee that needed access to the MS Access...
  11. oxicottin

    Getting current Fridays date

    @arnelgp thank you!
  12. oxicottin

    Getting current Fridays date

    I also tried ? date() - Weekday(dte, 3) + 4 in the immediate window and got 10/10/24. Would I change it to a Weekday(dte, 4)
  13. oxicottin

    Getting current Fridays date

    Hello I have the code below behind a button to get the current Fridays date. I tried it today which is Friday so it should give me todays date but it gives me next weeks Friday. What needs to be done in order to get the current Friday even if your on a Friday? Thanks! Private Sub...
  14. oxicottin

    Solved Out Of Memory error when emailing

    Thanks, I have some code I use for that already saved, I didn't think of not allowing special characters in a title because I never thought I would be saving as a pdf... Private Sub txtSampleNum_KeyPress(KeyAscii As Integer) Dim LResult As String...
  15. oxicottin

    Solved Out Of Memory error when emailing

    Just an update to help others..... Well, I was getting another error that OutputTo failed... and took me to this line: DoCmd.OutputTo acOutputReport, sExistingReportName, acFormatPDF, myReportOutput It's because in the "sAttachmentName" there were special characters like "/" that isn't...
Back
Top Bottom