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 Foundy

  1. Foundy

    Want to COUNTIF with cell value greater than cell reference

    Hi, I think you would need to do something like this. =COUNTIF(R4:R368,">"&Q371) Hope this helps.
  2. Foundy

    vba for word+loop until string get a value

    Hi Kalle, I have just had a quick look through your code and I would suggest looking into Do While Loops a basic example is: Do while YourString <> "aValue" YourString = "aValue" Loop This would keep the macro running till it found a value. Beware though if it never finds an error it will...
  3. Foundy

    Find Email in Outlook to Use in Excel

    You could use something like this: Sub GetAContact() Dim olApplication As New Outlook.Application Dim olNameSpace As Namespace Dim MAPIFlder As MAPIFolder Dim olContact As ContactItem Set olNameSpace = olApplication.GetNamespace("MAPI") Set MAPIFlder =...
  4. Foundy

    Excel 2007 Auto-Outline Difficulty

    Here is something I wrote recently thats does pretty much what you want. The problem is with Auto-Group you can only have 8 levels of grouping. The program reads through the folders and sub folders of a given folder then puts it in Excel. Once in Excel the files are broken down in to a...
  5. Foundy

    Using VBA to send a message through MS Office Comunicator

    Is there a way to conect to MS Office Comunicator using VBA and send an Istant message? I have tried looking all over the place for example code, but no luck. Any help would be great guys!! Thanks
  6. Foundy

    Excel to Lotus Notes

    I have been looking for a bit of code that allows for an excel macro to send e-mail and Fax's through lotus notes anyone with any ideas? Cheers
  7. Foundy

    Running A Extra! Macro From Excel.

    I have recently started using Extra! I have written a good script but now I want it to run from a button in Excel. Any Ideas Will Be Great, Cheers

Part and Inventory Search

Back
Top