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 Wanet Telecoms Ltd 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: *

  • Users: achillese
  • Order by date
  1. achillese

    Export to Excel with Report and Page Headers

    Hi, I am trying to export an Access data to Excel via a report and noticed that the Report Header is NOT exported, only the page headers (Field column Headers) and row data are exported. I was thinking of a template of which an existing Excel File has a Report Header AND just append the...
  2. achillese

    How do you requery a list in a tab form

    I have a list query sitting in a tab form that needs to be requeried/refreshed when i update variable field in Form A. The tab form is sitting in Form A. How do you requery the list in the Tab Form if the event is placed in the AfterUpdate property of the variable field in Form A? Thanks +++
  3. achillese

    Update a field from another fields with zero values

    It worked, brilliant! Thank you for that...
  4. achillese

    Update a field from another fields with zero values

    I need help on this. I have a table of which REMITAMTINCLADJ is updated from REMITAMTINCGST, ADJ1, ADJ2, and ADJ3. All fields reside in the same table and are of currency type. I am using Update Query to update the RemitAmtInclAdj The formula in the Update Query is...
  5. achillese

    Updating fields in Form b with fields from Form A

    Thank guys for all your answers. Yes, Form_B should take from Form_A not the other way around. I figure out already with your help...my problem also is syntax. However, how do you make form fields referencing if Form C sits in TAB FORM B and TAB FORM B sits in Form A. I want to update a field...
  6. achillese

    Updating fields in Form b with fields from Form A

    I need some help on this... I have Form B sitting inside From A. Form B is not really a subform of A, they are not linked. In Form A, I have a text field (not save in database) called PERIOD. In Form B, I have several fields called by a query, a field in Form B called PAID_PERIOD will be...
  7. achillese

    Rolling up child records into one field.

    If my understanding is correct, the way to do it is by using concatenation: in EXCEL do it this way: --------------------------- A B C D E 1 I AM HAPPY =B1&" "&C1&" "&D1 2 NO I AM NOT =B2&"-"&C2&"-"&D2 The result in row 1 will look like this in cell E1...
  8. achillese

    How do you make child records in one line?

    The records that need to be converted into one line has common SOPNUMBE and LNITMSEQ. The LNITMSEQ is not unique to the overall records, it is repeated within different SOPNUMBE. I have actually solved the problem by making several queries and saved them temporarily in different tables and...
  9. achillese

    How do you make child records in one line?

    Hi, I need some help in making the data below to be in ONE LINE (see desired result in Result 2). The data below is already the result of query from several tables. I could not go any further--please help.[sadeyes] Result 1: ========= SOPNUMBE LNITMSEQ CMPNTSEQ ITEMNMBR SERLTNUM ---------...
  10. achillese

    Numeric Overflow in Query

    I have already applied trim() for some fields it works fine but the error is still there. Is cell comment in spreadsheet causing the overflow?I may have to try that... Thanks +++
  11. achillese

    Numeric Overflow in Query

    Hi, I created a query to update a MS acces table from Excel spreadsheet. When I run the raw append query it works perfectly well. when I add a parameter value in a field to append only certain records in raw query it also works fine. But when i pass on the parameter value in a form and the...
  12. achillese

    Merging/Appending Two or more Excel Files into one.

    Unfortunately, I do not know vba. Importing external data allows text file only and still requires manual manipulation. I was thinking of like a straightforward cut and paste...supposing the user is dumbed. It would be good if you can provide the code for vb... Thanks anyway...
  13. achillese

    Appending non-duplicate records

    Hi, I would like some assistance on this append query. If I remove the INNER JOIN, the link source table, and just add the fields from the source table the query works. Otherwise, the query below doesn't work. Is it because i link two fields? or Is is because in my WHERE CLAUSE i have two...
  14. achillese

    Merging/Appending Two or more Excel Files into one.

    How do you merge two or more excel files with the SAME FILE STRUCTURES into one. Everyday i receive excel files and usually cut and paste (append) this one into a master summary for the month with exactly the same columns. This become cumbersome since there are several files to cut and paste...
  15. achillese

    SUB-TOTAL FROM ANOTHER SHEET

    Hi Petrosky, Thanks for the link. The example given in the link does not actually work. The SUM formula doesn't work but making it as SUMPRODUCT works. I didn't realised that you can actually add more than two arrays. I was just lazy not going back to online help. Here is my final formula that...
  16. achillese

    SUB-TOTAL FROM ANOTHER SHEET

    Pivot would have been an easy job. But my target tab sheet is pre-formatted with charts ready for printing and contains the monthly figure which is updated from other tabs also. the source tab sheet is just one of the sheets that updates the target tab sheet. I have updated the target tab sheet...
  17. achillese

    SUB-TOTAL FROM ANOTHER SHEET

    Hi, I need some help on this. My objective is to place the sum amount from one tab sheet to another. Source Sheet Tab: ---------------- Dealer - TrnType - Amount ------ ------- ------ ZT5 RUBY $100 ZT5 RUBY 150 ZT5 PORT 90 ZT5 PORT 110 XXX...
  18. achillese

    Converting queries into tables

    You can also use a Report and set the destination to a file.
  19. achillese

    Converting queries into tables

    Use TransferDatabase function and/or in conjunction with macro.

Part and Inventory Search

Back
Top