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. barcon

    Excel data selection

    I like to use ro = ActiveWorkbook.Worksheets(1).UsedRange.Rows.Count to find the last used row on the worksheet. Then I can use the info to do other things. However, if you have used rows below the currently used area and later deleted the data, it will include that area as used too. Barbara
  2. barcon

    macro from Word 2000 stops in Word 2003

    I have pasted the relevant code snips used below. Quite a bit was found on outlookcode forum. I have to admit that I didn't know what I was doing, and it needed to be done fairly quickly. It did work reliably until the change in Word though. It turns out that the customer may accept our normal...
  3. barcon

    macro from Word 2000 stops in Word 2003

    For anyone who might be looking for a solution, I found this in another forum and it worked for me. Sub LoadOutlook() Dim outlk as Object Set outlk=createObject("outlook.application","localhost") 'parens are on same line as previous End Sub Barbara
  4. barcon

    macro from Word 2000 stops in Word 2003

    I found nothing but one for Media Player labeled Not Public. I checked it anyway but it didn't help. Do you think it would help to reinstall Office making sure all components are checked? I need to ask the IT guy to do it if it is a possibility. Barbara
  5. barcon

    macro from Word 2000 stops in Word 2003

    I have a macro which ran fine under Word 2000. I was recently upgraded to Word 2003. The macro stops on set outlk=outlook.application. Outlk is dimmed as outlook.application. I referenced Outlook as I did originally. The IT guy applied the fix in Microsoft KB891401 but it didn't help. I have...
  6. barcon

    Excel hide cell contents

    Could you make it seem invisible by changing the font to the background color, white for instance? Set rng = ActiveSheet.Range("a3, b3") rng.Font.Color = RGB(255, 255, 255) Barbara
  7. barcon

    Import Outlook contacts into Word?

    I've done it by copying selected contacts to a separate contact folder and exporting just that folder. Easiest if principal is assigned a category then the view is selected by category. Hold down shift key, click top contact then bottom contact so all are highlighted. Edit>> copy then open new...
  8. barcon

    need email content copied

    Thanks Dom. The code doesn't do what I need but I'm going to save it just the same because Outlook code looks so difficult in comparison to Excel. I need an embedded HTML table to get into WOrd as a table. I got some advice to paste the html string and save as .htm then open or insert it but...
  9. barcon

    need email content copied

    Office 2000 I need to copy/get the message portion of a group of emails and paste/insert them into Word seqentially so that I can lose the headers and also control where a row breaks for printing. The message is embedded HTML which pastes as 4 tables per message into Word. The emails are...
  10. barcon

    MS Word 2002 Merge into Table

    Using Word 2000 MailMerge Wizard. Under Main Document>>Create choose Catalog. Then make a one row table, inserting your Excel fields in the Main Doucument. Then merge. It should create a row for each record. Barbara
  11. barcon

    Autofilter for conditional formatting

    I tried this and it worked for me (Excel 2000). Maybe it will work for you. Data>>Filter>>Advanced Filter>. Select your whole range. Then in the criteria box select only the data range. Click OK and its done. Barbara
  12. barcon

    Word 2003 - Save As greyed out

    I'm curious as to why that way is better... Just trying to learn. Thanks.

Part and Inventory Search

Back
Top