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 strongm 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 yooneek

  1. yooneek

    Subtracting a date and time from 2 columns

    You could also do a format change on the text, converting it into the Date standard. J2 = (TEXT(I2,"mmm d, yyyy h:mm am/pm")-TEXT(F2,"mmm d, yyyy h:mm am/pm"))*24*60*60 OCD, it’s not obsessive if you can control it…
  2. yooneek

    MS Excel Password Input

    Simplest way would be to change the font color of the password box to white... OCD, it’s not obsessive if you can control it…
  3. yooneek

    Help with exporting to CSV file - need seperate file names for records

    You could do something like this... Public Sub SaveCSV_AsXls() Dim acpc As String, acpx As String, fac As String, xlsDir As String Dim Well_Name_Short As String, Well_Name_Long As String Select Case ActiveWorkbook.FileFormat Case Is <> 6, 22, 23, 24 'MsgBox...
  4. yooneek

    Finding the &quot;Next Max&quot; in Excel VBA

    You could sort the data based on the column you are deleting from before you delete. OCD, it’s not obsessive if you can control it…
  5. yooneek

    word doc as body of mail

    Outlook's base for the Body is a Word document. When calling it from inside Outlook VBA, .GetInspector calls the Item and allows for you to manipulate the Body using .WordEditor (Word VBA) rather than flipping between Word/Outlook code. Comes in handy when you just need to do a one line entry...
  6. yooneek

    Sorting a multi-dimensional array in Excel VBA 2007

    Actually, I was looking for this yesterday... Check out this site http://www.xtremevbtalk.com/showthread.php?t=150521 OCD, it’s not obsessive if you can control it…
  7. yooneek

    Edit VBA code - Save Emails From Outlook To Hard Drive

    For Jed: Public Function GetFolder(strFolderPath As String) As MAPIFolder '=================================================== 'Sue Mosher 'http://www.outlookcode.com/d/code/getfolder.htm ' folder path needs to be something like ' "Public Folders\All Public...
  8. yooneek

    Counting rows where a column has a value, any value except space/blank

    What about UsedRange.Rows.Count ? OCD, it’s not obsessive if you can control it…
  9. yooneek

    word doc as body of mail

    You could aslo use the WordEditor function of the email itself... Assuming that the message is displayed: olMessage.GetInspector.WordEditor.Range(start:=0, End:=0) = wdDoc.ActiveWindow.Selection or you may have to copy the data from the .doc first wdDoc.Select wdDoc.Copy...
  10. yooneek

    Create new Outlook Email - adding attachment

    I haven't dealt with this much either, but I do know that you can manipulate the body through the WordEditor.Range functionality. I have some code from excel adding to the body using this: .GetInspector.WordEditor.Range(Start:=0, End:=0).Paste I'm not sure if this corresponds to the integer...
  11. yooneek

    MS Excel 2007 - Separate Pages in one sheet to multiple sheets

    Not sure how familiar you are with VBA, but you can add this to a module and see if it works for you: Public Sub CopyFromPageBreaks() Dim vpba() As Variant, hpba() As Variant, pb() As Variant Dim pa As String, paa As String Dim vpbx As Integer, hpbx As Integer, x As Integer, y As...
  12. yooneek

    tif attachment won't open - Outlook Express

    Have you checked the file association? (Windows Explorer->Tools->Folder Options, File Types, TIF) OCD, it’s not obsessive if you can control it…
  13. yooneek

    Minimise workbook but display userform?

    Just a suggestion, but instead of minimizing the workbook resize it to the dimensions of the userform, then for the userform, turn off all boardering. Not exactly pretty, but should work. OCD, it’s not obsessive if you can control it…
  14. yooneek

    How do I get reply status on outlook mail items in vba

    Item.LastModificationTime will give you the Date Time refference, but not the action... I'd need to dig further to find that one. OCD, it’s not obsessive if you can control it…
  15. yooneek

    format rows of the same type (in while loop?)

    Welcome to the forum and VBA. I'm sure you'll fall in love with makeing little things like this to optimize your life.. I know I have :) On to the coding: If you know that what and where you are trying to do things then this is fairly easy to do. (Note: the deleting/shifting cells around...

Part and Inventory Search

Back
Top