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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by lambuhere1

  1. lambuhere1

    Copy Macro

    Have you tried exporting modules and then importing them?
  2. lambuhere1

    Powerpoint VBA - runs in debugger but not in slide show

    I think you need to call this macro when a particualr slide comes up or you can assign it to a button on the required slide to call this macro. Hope this helps Ram P
  3. lambuhere1

    Locating & eliminating Links in Excel Work Book

    Search for ! in your workbook. You should be able to find all the listed links. Else you have a delete links addin from Microsoft which can do the work. Heres the link for it. http://support.microsoft.com/?kbid=188449 Thanks Ram P
  4. lambuhere1

    Update many excel hyperlinks

    Similar to the above requirement, I have something like this. All the links in my file have to a particular file like c:\abc\ I would like to replace it to c:\n\abc Can anyone guide me in replacng all the links with the new path. Thanks Ram P
  5. lambuhere1

    filename saving

    Use old_path = activeworkbook.path ' to get the path which has the macro run. And use this to save your workbook. ActiveWorkbook.SaveAs FileName:=old_path + "\filename.xls" Hope this helps. Ram P
  6. lambuhere1

    Copy and paste rows between sheets

    For i = 1000 to 1 step -1 if cells(i,1).value = "" then cells(i,1).select selection.entirerow.delete end if Next i Tweak this code to meet your requirements. Ram P
  7. lambuhere1

    xl3dline

    Pardon me. I was thnking it was XY Scatter chart.. Ram P
  8. lambuhere1

    activating workbooks

    You can use Ctrl in combination with PageUp and PageDpwn to move between various worksheets of a workbook. Rob is right in using his VBA. Ram P
  9. lambuhere1

    xl3dline

    And as far as my knowledge goes, we don't have any concept called 3D Line plot. Let us know what you are trying to accomplish to help you with. Thanks Ram P
  10. lambuhere1

    activating workbooks

    I prefer using Ctrl and Tab key combination to shuffle between various open workbooks. Isnt it great!!! Thanks Ram P
  11. lambuhere1

    Linking Excel chart to Powerpoint

    Yes, You can do it through VBA. Do send me the file and I can send you the code. Thanks Ram P ram.prakash@geind.ge.com
  12. lambuhere1

    Userform in excel

    You can use something like this. In the command_button_click event of the MOTHER FORM, Use the following code. Motherform.hide Childform.show 'you may need to tweak the code depending on the names assigned to your userform. Hope this helps. Ram P
  13. lambuhere1

    HOW TO SEARCH FOR FILES FROM EXCEL?

    How about using Filesystemobject ?
  14. lambuhere1

    Excel chart point color

    You can select each individual Point to change the color you want to Hope this helps. Ram P

Part and Inventory Search

Back
Top