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 Mike Lewis 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. annanathan

    Need help in Charting: retrieving the series.

    Maybe I haven't explained the problem clearly... I have created a linear chart in Excel. I would like to retrieve the column id (eg. A, B, ... ) that the chart is reffering to using VBA. I need this id so that I could use it later in my VBA coding for other puposes. How do I do this? Please...
  2. annanathan

    Need help in Charting: retrieving the series.

    Hi All, I'm trying to retrieve the series from an already configured chart. I need to know what column is it referring to on the chart. Any help is appreciated, Thank you in advance.
  3. annanathan

    Help: find command need to display only name of the file

    Thank you very much... This is exactly what I was looking for... Regards, Jeya
  4. annanathan

    Help: find command need to display only name of the file

    HI Ed, The $1 gives me the full path with the name of the file found: eg d:/something/name_of_file.txt I just need 'name_of_file' to show... eliminating the path and the extension. Thank you in advance. Jey
  5. annanathan

    Help: find command need to display only name of the file

    Hi all, I need help to understand how to use the find command to get the name of the file only. find d:/something/ -name "*.txt" -exec another_script.sh {} \ ; I need to pass only the name of the file found in the 'another_script.sh'. (extenstion excluded also) Thank you in...
  6. annanathan

    mkdir and cd using xargs... help needed

    Thank you all... This is exactly what I wanted.
  7. annanathan

    mkdir and cd using xargs... help needed

    Hi all, I'm trying to create a directory with the current day of the following format: "date '%d_%B_%y'", since I want this job to run every day and create directory for each day... Then I want to change directory of the newly created directory, but it's not working. This is what I...
  8. annanathan

    How to get 5 char on left of a field

    Thank you... it's working fine Where can I find all the built-in functions (like REPLACE) in Oracle?
  9. annanathan

    How to get 5 char on left of a field

    I'm using Oracle... Thank you.
  10. annanathan

    How to get 5 char on left of a field

    Thank you all for your help... I have used the substr as you have taught me and it's working like a charm. However I have another question Does anyone know how to find a particular character in a field (let's say a space) and substitute that with another character(let's say with nothing)...
  11. annanathan

    How to get 5 char on left of a field

    Thank you guys... it works with substr... What about 5 characters from the right? and What about exactly the 5th character? Thank you in advance.
  12. annanathan

    How to get 5 char on left of a field

    Hi All, Does anyone how to find the left 5 characters of a field in SQL? is there a built-in function that can be used to achieve this? Any help is appreciated. Thank you in advance.
  13. annanathan

    Finding file with a specific time_stamp

    Thank you.... Everyone has been of real help, especially gillou and mrjazz. I got my script to work thanks to you.
  14. annanathan

    Finding file with a specific time_stamp

    I'm very new to unix scripting, so I might sound dum, but I have another question: what does sed 's/://g' do? i tried the man page, but it doesn't help me much... Thank you.
  15. annanathan

    Finding file with a specific time_stamp

    Thank you all for you help... but I have one more question... The above examples remove the files of the day stamp of 08:30 exact of yesterday's files, right! What if I want to remove all files prior to that time stamp? let's say remove all the files in a particular directory prior to...
  16. annanathan

    Finding file with a specific time_stamp

    Hi mrjazz, what does awk '{print $11}' mean? what is $11? thank you.
  17. annanathan

    Finding file with a specific time_stamp

    Hi All, Does anyone know how to Remove all the files in a particular directory if their last time modified was yesterday at 8:30am? (or any specific time stamp ) Any help is appreacited. Thank you.
  18. annanathan

    Need help on Comments in Excel

    Hi all, I have an excel sheet filled with data in column A. I need the column B to say "Explain" whenever the value in cell A is less that 200 and I want the 'Comment' box to appear eg. A B 1 123 explain 2 234 3 423 4 53 explain 5 234 row 1 and 4...
  19. annanathan

    FSO -FileSystemObject... Reading word by word.

    Hi All, Does anyone know how to read word by word from a file using FSO? Another question... Is there a rewind or some similar function in FSO to go back to the line just read? Thanks in advance.
  20. annanathan

    Calling Macro on another workbook!

    Hi A.C. I tried Application.Run ("Workbook_name!Macro_name") and it gives me a run-time error (91) saying "Object variable or With block not set. Do you know how to fix this? Thank you.

Part and Inventory Search

Back
Top