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 Chris Miller 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: peace77
  • Order by date
  1. peace77

    Runtime Error:Microsoft office excel cannot access the file

    I added full path name under FileName and it resolved the problem. Thanks combo for the suggestion. Thanks, Peace
  2. peace77

    Runtime Error:Microsoft office excel cannot access the file

    the reason I have Application.DisplayAlerts = False is to allow overwriting on the file with the same name. If I remove that it will display a dialog box asking users permission to overwrite the file. I cant specify the path name of current folder before saving as it will vary on users to users.
  3. peace77

    working days: excluding weekends and holidays

    Hello Friends, I have another question on Excel VBA. Our company saves file with certain information everyday in a standard format which contains the previous working date. For example today (ie 11th March) a file is saved with name in this format- Capital_2008_03_10.txt I have to develop a...
  4. peace77

    Runtime Error:Microsoft office excel cannot access the file

    Hello Friends, I get the following error when my macro is trying to save the file in Excel 2003. It does not always give this error- at times it runs fine and at times it does not…And if the error comes and I close the excel application entirely and reopen it than the the macro runs without...
  5. peace77

    excel vba code to create a button and assign script to it

    Hello CK1999, Here are the answers to the questions 1. What version of excel? Its Excel 2003 2. Do you want a button actually on the sheet or a button on a toolbar ? Button on the sheet. Once the user enters the dates he ahs to click the button. And in the background I have to assign a...
  6. peace77

    excel vba code to create a button and assign script to it

    the user will enter the dates. but we dont know what the dates will be? its going to be dynamic
  7. peace77

    excel vba code to create a button and assign script to it

    Hi ck1999, We do not the value that will go in coloumn I. The user has to put that in and then that data is to be recorded in another sheet. In the above example the layout is not clear. Actually there are no values in coloumn I. Peace 77
  8. peace77

    excel vba code to create a button and assign script to it

    Hello, I am designing a project where I have to make a macro in excel. I have done most of it but now I am stuck at one piece and have no clue how to go about it. There are two worksheets in the file: “Prefund” and “Settled Wire” I have a macro that creates these two sheets and dumbs the data...
  9. peace77

    Help on Excel lookup for dates in different format

    Thanks very much..I guess I am losing my sanity..
  10. peace77

    excel vba code to divide coloumns

    Please excuse me for my terminologies. I am trying to pick the programming lingo. I do not have a defined range and hence I can not use the Autofill method. The number of rows in coloumn G and H keeps changing and hence i was using the loop to make it dynamic. I am not sure about the INTERSECT...
  11. peace77

    Help on Excel lookup for dates in different format

    Hi SkipVought , I did Data > Text to Coloumn for Sheet 1dates in YMD format and Sheet 2 dates in DMY formatand eventually results for both the sheets are generated in the same date format. Thanks for your help! I now need to figure how I can incorporate this in VBA code..Any ideas are highly...
  12. peace77

    Help on Excel lookup for dates in different format

    Date Converted date in DMY Desired results 080219 2/8/19 19/02/08 080218 2/8/2018 18/02/08 080215 2/8/2015 15/02/08 080214 2/8/2014 14/02/08 080131 1/8/1931 31/01/08 080130 1/8/1930 30/01/08
  13. peace77

    excel vba code to divide coloumns

    I need Excel vba code to divide Column G by Column H and store the values in Column I. The data looks like this Column g Column h Column i 10,000.00 23 24,750.00 25 10,200.00 26 -3,127.04 28 I am not thorough with VBA and have made an attempt to write this code after gathering pieces...
  14. peace77

    Help on Excel lookup for dates in different format

    Hi Chance1234- I need it to be a macro because the process has to be automated and the user should not be running any of the formulas or functions to generate the final output. SkipVought- you are correct in saying that sheet 1 has strings. But I am unable to convert the phoney dates into a...
  15. peace77

    Help on Excel lookup for dates in different format

    I have two different worksheets and each sheet has dates in different format. Sheet1 dates are pulled from the system and shows up as '080215 (in general format and starts with single quote because it is pulled from the system)whereas Sheet2 has date in format 7/02/2008. Here are the contents...
  16. peace77

    FileSystemObject to import DAT and TXT files

    Thanks JoeAtWork i edited as : .Filters.Add "Data Files", "*.txt;*.dat
  17. peace77

    FileSystemObject to import DAT and TXT files

    Sorry about that..Here is the piece where i set the filepath variable. [code] Function filebrowser() As String 'Declare a variable as a FileDialog object. Dim fd As FileDialog Dim filepath As String Dim vrtSelectedItem As Variant Set fd =...
  18. peace77

    FileSystemObject to import DAT and TXT files

    Hello, I am required to convert a dat file into access and structure the information as per the desired output. Initially I had thought that the file to be converted into access is in txt format and hence I wrote the complete code accordingly. I just learnt that the file will be available in...
  19. peace77

    Absolute record position

    Sorry for inadequate info..I was asking for Access record set. Anyhowit was a simple one: If RS.RecordCount > 0 Then RS.MoveFirst asatdate = Trim(Right(RS("AllData"), 24)) i have a complex code to bring over the data to access and then structuring the information...i realized that...
  20. peace77

    Absolute record position

    Hello friends, I am looking for a code to pick up the date from the data set and store it in the field named as “asatdate”. This required date always appears on the third record of the data set. Would anyone be able to suggest the code to pick up the date for this absolute position of third...

Part and Inventory Search

Back
Top