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. AndyKeen

    FTP Files truncated in Access 2010 on Win7 problem

    Thanks 1DMF. I have tried everything I can think of and double checked my version the code - even put in the fix for the remainder handling. I am confident that the code is fine - and it has always worked in the past. I was grasping at straws I guess, just wondering if there was some...
  2. AndyKeen

    FTP Files truncated in Access 2010 on Win7 problem

    Ref thread705-1703957 I am using code based on 1DMF's method in a database I wrote a number of years ago. This code has been working perfectly ever since for a client company transferring .csv order files created in an access database and then passed to their suppliers for fulfilment. The...
  3. AndyKeen

    Selecting a record on an access form by clicking on an excel cell containing the search value.

    Sorry Skip. My use of language is at fault. The "chart" is a user term for the entity which in Excel terms is simply a worksheet on which the data is laid out in a form which the user requires. All I need to do is trap the cell being selected by the user, pick up the value of the record key...
  4. AndyKeen

    Selecting a record on an access form by clicking on an excel cell containing the search value.

    Thanks again Skip. Sounds just the thing. Will see how I get on tomorrow. Hopefully I won't have to bother you again.
  5. AndyKeen

    Selecting a record on an access form by clicking on an excel cell containing the search value.

    I have a small Access (Office 2007) application which uses Excel to display a "room chart" from data held in the Access tables. The Excel workbook and sheet are automatically opened and populated/updated as changes are made within the Access forms. When the Access form is closed the Excel sheet...
  6. AndyKeen

    Excel Match/Index not adjusted if database sorted?

    OK Found it - Although still not quite sure why it works as it does! The original references in the matches were in the format "UniqueValues!F2063". "UniqueValues" is the current sheet that contains the formulae. Everything worked fine until the database is sorted. I have modified the...
  7. AndyKeen

    Excel Match/Index not adjusted if database sorted?

    No, that is not the case but I am going to put together a small test sheet to try to prove the problem one way or the other. I should have done so before wating your time - sorry. If I can reproduce the error in another smaller sheet I will repost here and (if I can) attach the sample workbook...
  8. AndyKeen

    Excel Match/Index not adjusted if database sorted?

    No Skip. I am saying that If I have a database table spreading across 30 columns or so and that contains the row specific version of the above formula on each row it works perfectly. If I then click on the row ID for the headings and then data, filter it allows sort/filter on all columns of...
  9. AndyKeen

    Excel Match/Index not adjusted if database sorted?

    I have a database in Excel which consists of a couple of thousand rows or so which users need to sort, filter and manually amend regularly. I need to include a calculated value on each row based upon the results of a combined match,index,index formula as follows...
  10. AndyKeen

    read table only when data changed?

    Thanks Christiaan. As I have no experience of either I guess this will be another good learning curve on a supposedly small app. There will never be more than 10 concurrent users. Which do you think would be the best/quickest method to read up on first? I don't want to make this into a...
  11. AndyKeen

    read table only when data changed?

    A very small part of my current app requires me to read an existing Access 97 table containing a single record and to display the contents of a field as soon as they are changed. I have no control over how or when the data is placed into the Access table (it is a call logging output)...
  12. AndyKeen

    excel.workbooks.opentext compile error (Excel 2003)

    Thanks Combo. You are of course correct I can "control" the name if I wish. However, as a test after your first post, I changed the name of the file manually to .txt and I am afraid got the same "automatic conversion" problem as I got with the .csv extension so in this case there isn't much...
  13. AndyKeen

    excel.workbooks.opentext compile error (Excel 2003)

    Thanks to HughLerwill & PHV. Will remove the 2nd refresh and try the delete as suggested. As it happens the CSV files are relatively small and the sheet is only active for a very short time (usually less than a minute) during the conversion process so neither is really an issue in real life...
  14. AndyKeen

    excel.workbooks.opentext compile error (Excel 2003)

    Just to complete the story. The final syntax I got working was: Set wsInqt = wsIN.QueryTables.Add(Connection:="TEXT;g:\vas\sage\trans.csv", Destination:=wsIN.Range("a1")) With wsInqt .TextFilePlatform = 437 .TextFileStartRow = 1 .TextFileParseType = xlDelimited...
  15. AndyKeen

    excel.workbooks.opentext compile error (Excel 2003)

    Thanks again to Skip and Combo for your assistance. I will try the solutions tomorrow. Unfortunately I don't control the naming of the import file so Combo's solution might not be ideal for the user. However I am sure one solution or the other will work for me and at least I have learnt...
  16. AndyKeen

    excel.workbooks.opentext compile error (Excel 2003)

    Thanks again Skip. I thought I had already done exactly that and got the same error as with the set but I must have made a different error there. Your code worked perfectly! Unfortunately, my original problem still remains. A text field "MAR2" in the second column of the CSV file, when...
  17. AndyKeen

    excel.workbooks.opentext compile error (Excel 2003)

    Thanks for the reply Skip but I think on this occasion it misses the point.[sad] I am trying to use a small spreadsheet to do a repetitive conversion task. The worksheet just has a button on it which the user presses to activate the conversion code behind. The code is(was) all working...
  18. AndyKeen

    excel.workbooks.opentext compile error (Excel 2003)

    Hi I have a spreadsheet which open a csv file and converts it to another csv format (processing the rows as it goes). All worked if I opened the input csv file with the statement: Set wbIN = Workbooks.Open(Filename:="g:Trans.csv") except that the second column is sometimes misinterpreted as...
  19. AndyKeen

    Set Subform Datasheet View Column Heads?

    Thanks Krispi - Sorted. I could not do exactly as you suggested because the form would not allow it - clicking on the heading simply selected the entire column. However, it suddenly dawned on me that the label used in the column heading was actually an auto generated label which was hidden...
  20. AndyKeen

    Set Subform Datasheet View Column Heads?

    Hi Ref MS ACCESS 2003 (2000 compatible) I have a couple of forms which use subforms displayed as datasheets. When I add a control to the form such as a textbox it is generated with the default name TEXT22 etc. I set the control source of the textbox and change its name to something "user...

Part and Inventory Search

Back
Top