Recent content by hoda64

  1. H

    hyperlinks from excel to access

    Hello, I am trying to import hyperlinks. Apparently it is not possible to import hyperlinks from excel to access with just the normal wizard. I have tried different techniques such as saving the excel file as a tab delimited file or adding # signs to the fields prior to import to access...
  2. H

    insert record into table sql error

    hahahahahaha! as long as we figure it out i suppose.
  3. H

    insert record into table sql error

    Thanks for that suggestion, it helped me pinpoint the problem. But now I have another problem. I entered the sql statement into the "sql" tab of a blank query. When I ran the query, it was have trouble finding the fields: , [Cause], [System], [Component], [Reportable to EPIX], [Manufacturer]...
  4. H

    insert record into table sql error

    Ah ok, thanks for the clarification, I misread your earlier post. CurrentDb.Execute "INSERT INTO LER_Digital ([Originated by], [Date Entered], [Reviewed by], [Date Reviewed], [Title], [Event Date], [Report Date], [Report Link], [LER Number], [Facility], [General Plant System], [Plant System]...
  5. H

    insert record into table sql error

    Thanks for the response. I am trying to get rid of the space, but because the first line is so long, it is not letting me delete to make it all one line so I thought that syntax is what is used to connect the lines together in a string. If I just leave the "&" and delete the "_" I get a syntax...
  6. H

    insert record into table sql error

    Hi, I am trying to move some records from one table to another using sql. When using this code: CurrentDb.Execute "INSERT INTO LER_Digital ([Originated by], [Date Entered], [Reviewed by], [Date Reviewed], [Title], [Event Date], [Report Date], [Report Link], [LER Number], [Facility]...
  7. H

    using Like statement in where condition for docmd.openform

    Thanks!! :D That worked, I am going to try to figure out what you did. I'll be back with questions if I cant figure it out. Thanks again!
  8. H

    using Like statement in where condition for docmd.openform

    Hello, I want to open a form based on two conditions: a date and a facility name The problem is that the data I have is not consistent when it comes to the facility name part. For example, if I wanted to search "apple" the data might have "apple" written as "apple1" or "apple2". Therefore it...
  9. H

    want to make chart report with array and vba variable values

    You are right, in that code I only have one array. I make two arrays later on based on your post afterwards where you tell me to simplify my data, so that code is outdated. I had added it there originally to try to show you what I was doing at the time. Thanks so much for providing that...
  10. H

    want to make chart report with array and vba variable values

    Hi Chris, Thank you for your response. Sorry if I am being difficult, but: I am confused, I gave you an array of plot points. One for the x-axis, and the other for the y-axis. I am a little confused as to how much more simple I could be. I am also confused as to why you are worried...
  11. H

    want to make chart report with array and vba variable values

    Sorry for the delay, I have been caught up with other things at work. I am now able to have two arrays, one with year, and the other with the number of events per year. here is an example of what my arrays print out: Year: 2010, 2011 No. Events: 2, 7 Granted this is barely enough...
  12. H

    want to make chart report with array and vba variable values

    Hi Chris, Thanks for your clear response. Based on your post it looks like my data is not in as simple of a form as it should be. I'll get back to you when I figure out how to make it more simple. Here is my situation: This is what I want: X axis: Date range, in years (1980...
  13. H

    want to make chart report with array and vba variable values

    Hi Chris, Unfortunately, I can't really give out the data because the database has some sensitive information in it. But here are the fields I am working with: Facility - Text Event Date - Date/Time Plant System - Text Facility and Plant System are user inputs that I get with an Input Box...
  14. H

    want to make chart report with array and vba variable values

    Hello, Here is the background on my question: I am trying to make a chart report where I want to show the sum of total events (the user inputs the criteria for the event they want the sum of) that have occured over time in the form of a line graph. I want the x axis to be years and the y...
  15. H

    newb question on arrays and vba

    Wow, what a simple mistake. Thanks so much!
Back
Top Bottom