Recent content by Jovial

  1. J

    Search Criteria to the passthrough query in access

    Hello Everyone, I have a passthrough query where I have to pass the search criteria as "IN" using access VBA. All the search criteria are stored in the field "Code" in the table "Area" in access as: I can pass each code value in the passthrough query as a loop and execute the passthrough query...
  2. J

    excel formatting

    Thank you for replying. I spent a lot of time on this but still could not figure out.:banghead: Waiting for your code :)
  3. J

    excel formatting

    Any help please
  4. J

    excel formatting

    Thank you for your reply. I want to do formatting only if there is a match between the cells in column.For this I have to check each and every cell in column E. For eg: I have data in Column E AS shown below Column E 1234 678 678 890 1234 First find the match in Column E then only format so...
  5. J

    excel formatting

    Hello, I have a excel file generated from access. After exporting i have to do some formatting which i tried to do though excel automation. I need look the each cell value of column E in the same column. If it exists highlight and make it bold. Here is my code snippet. 'Find the last row...
  6. J

    Access to excel formatting

    Hello, I have a query in access which i export to excel via 'Output to' method and result look like this: But I want the result like: I want to create the function (modifyExport) in access vba which will be called after exporting the file and format the excel file I am not very good at VBA...
  7. J

    Access query help

    nope -Same error
  8. J

    Access query help

    My table name is CommentItem Select Replace(Left([CustomerName], Len([CustomerName] - 2, " ") from CommentItem error is still in the function. It is showing error in " " part
  9. J

    Access query help

    Replace(Left([CustomerName], Len([CustomerName] - 2, " ")
  10. J

    Access query help

    What is LAST and FIRST here? Data are present in column CustomerName as CustomerName WILSON, DAVE D GROVER, LAURA A
  11. J

    Access query help

    I changed the name to my column name 'CustomerName' and it gives me error as: the exprerssion you entered has a function containing the wrong number of arguments
  12. J

    Access query help

    I have data as WILSON, DAVE D GROVER, LAURA A I want as WILSON,DAVE GROVER,LAURA How do i achieve this in access query?
  13. J

    Error in the access vba code

    I have not use the FileCopy function till now and there are macros and code behind the template.
  14. J

    Error in the access vba code

    I use old code in 'with' statement as: With ActiveSheet 'Clears the current contents in the workbook range .Range("A5:G65000").ClearContents 'rst Copies the recordset into the worksheet .Range("A5").CopyFromRecordset rst1 End With And I modify the code for 'Save as' as...
  15. J

    Error in the access vba code

    This code is behind the button on the form. Upon clicking, it is supposed to load the data in the template and save it as different name.
Top Bottom