Search results

  1. Fuga

    Question cannot update linked table. But the table is not linked.

    Hi, I´m trying to execute an update query on a table that's in the db. The comparison records, ie the ones that are not supposed to be updated, come from a linked text file. Access is telling me that the isam doesn´t allow update to linked table, but like I said, that´s not what I´m doing...
  2. Fuga

    Adding Autonumber with MakeTable query

    If you do like wiklendt suggests, your table will automatically fill the autonumber field when your records are appended. Is there a reason why you want to use a make table query? So, create a table with fld and autonumber. In design view, set the field property to autonumber and assign a pk...
  3. Fuga

    Access Help Please!

    Hi, Judging from the first sentence in your question, I gather that you have only just now started using access or creating databases. I appologize if this is not so. However, I think in general that you should check out these topics: Relations, parameter query (update query) and vba...
  4. Fuga

    Trend line function.

    Thanks mailman! I haven´t seen this until now. I will definitely try it. Fuga.
  5. Fuga

    Turning date to integer for performance?

    Hi, I´m going to include a real monster of a table into an already large database. The table will hold at least 10 million rows, provided it fits with access limitations. One of the fields is a date field, and I was thinking of turning it into an integer to save space and gain performance...
  6. Fuga

    Question Automatic export to Excel?

    Good! Hope it works. I didn´t actually run it, but it should be something like that. One thing: The timer is good to use when you have a form open all the time. The timer starts when you open the form, and if you close it it stops. If you rather want to open a form and export right away, you...
  7. Fuga

    Question Automatic export to Excel?

    Hi, I had started my reply before I saw the latest posts, so I post it allthough you need more than this. This is what I would do: Set up a form. In it´s timer() event, put in something like this: Private Sub Form_Timer() Dim exportdate As String 'check to see if it´s friday If Weekday(Now)...
  8. Fuga

    Automatic E-mail Containing Excel Document

    You can automate msOutlook to send emails with attachments. If you need to do this every 24 hours or so you can use a form´s timer event. To export a query to excel format you can use TransferText. Are you familiar with vba programming? Fuga
  9. Fuga

    Automatically adding new records in 5 other tables when ID is created in main table

    You can do this if you have your participants info in a mainform, and the different questionaries in subforms, linked by the ID field. Is that what you´re looking for? Fuga.
  10. Fuga

    Trim first 4 characters and link to another table

    Hi, At the risk of missing something here, can´t you just do it like this? variable = right([Emergency-Approver],5) and then do a select query: select * from approval_code where [field] = variable Fuga.
  11. Fuga

    Calling query in access from excel

    In access VBA, I usually use docmd.transfertext or docmd.transferspreadsheet to accomplish this. I run this from access rather than from excel, but using VBA I think you should be able to run it from excel. I´ve always done it the other way around so I haven´t tried it, but make sure you have a...
  12. Fuga

    Asigning Files names to imported tables

    Sorry for the delay. This might have to do with the importing function. I´ve had similar annoying problems. Try making a manual import of the files first (thus pointing in the right folder). Then run the loop and see if that helps. You will probably need to check your loop as well. It looks...
  13. Fuga

    chart changing scale minimum.

    Hi all, I´ve had this problem for a while but it only just recently became very annoying. I have a chart on a form displaying data over time. I´m using two comboboxes to select start date and end date. There are A LOT of data in the underlying query. However the problem does not seem to be...
  14. Fuga

    Trend line function.

    Hi all, I would like to have a function in an access query showing the slope of a trendline (the linear one in excel). Do you know how to create it? Fuga.
  15. Fuga

    Asigning Files names to imported tables

    I use the Dir() function for finding the files and I would think there is a name method for currentdb.tabledefs. I'm sorry I don´t have time to test it right now, but check out the help for dir() and the tabledefs collection. Fuga.
  16. Fuga

    problem with linked formula

    I thought I´d share my latest experience. The formulas I had problems with started quite "late" in the workbook, meaning that the first 1000 rows were empty in the formula-columns. I tried putting a number in the first row, and it seems that access now links correctly. This would indicate...
  17. Fuga

    problem with linked formula

    Hi again, First, I solved the problem temporarily by selelcting all, copying and paste in as values. Then excel saves a copy of the workbook. The workbook with the formulas stays intact. Not pretty, but then again this should have worked in the first place. I like microsoft´s programs, but I...
  18. Fuga

    Database Driven Website

    I´m new to web programming, but wouldn´t Microsoft´s visual web developer with access or sql server be worth checking out? Fuga.
  19. Fuga

    problem with linked formula

    ok, so now I tried boblarsson´s suggestion, and I still get the same error. What am I missing? Fuga
  20. Fuga

    problem with linked formula

    No, I don´t. I have been messing around with different versions of office. perhaps the file is somewhere else. What is the name of the file?
Back
Top Bottom