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!

Search results for query: *

  1. LScharf

    Create contact group in another user's Outlook contact folder

    Thanks for confirming what I was seeing. The user will continue to copy her boss' contacts to her folder and then update his Contact Group (CG) with her contacts. The only downside, I believe, is the lack of a live link between his CG and her contacts. So he can't double click on a member of...
  2. LScharf

    Create contact group in another user's Outlook contact folder

    Thanks, noCalAdmin. She is an Owner of her boss' Contacts. She is not a Delegate. I've just been told by someone that it is not possible to use another user's contacts as an Address Book (which is what she needs to be able to do)...
  3. LScharf

    Create contact group in another user's Outlook contact folder

    Hi, a coworker upgraded to Outlook 2010 and wants to create a contact group in her boss' contact folder. She gets as far as creating the group but then she cannot add members from his contacts. Is this no longer possible in 2010? She used to do it in 2007. Thanks!
  4. LScharf

    Newbie: Installing binaries without installer

    Hello, I have downloaded the binaries for a program that I'd like to install on a 32bit Windows Server 2008 R2. It includes an installer but that requires a 64bit OS. The instructions say that I can "sync to the source, build and deploy the binaries" myself. I've been searching the web for...
  5. LScharf

    Excel Hyperlink problem

    I have a workbook with two sheets and a range called 'guidance' on sheet2. I need to create a hyperlink on sheet1 to get the user to sheet2, based on a value lookup. So far I've got this: =HYPERLINK(CELL("address",INDEX(guidance,MATCH(C6,INDEX(guidance,,1),0),1)), "Go") The CELL function...
  6. LScharf

    Delete cell contents when user deletes adjacent cell contents

    Perfecto! Thanks a million. You are a smooth... operator. Final code with necessary End Ifs: Private Sub Worksheet_Change(ByVal Target As Range) If Target.Count > 1 Then Exit Sub If Not Intersect(Target, Range("Clearer")) Is Nothing Then If Target.Value = "" Then...
  7. LScharf

    Delete cell contents when user deletes adjacent cell contents

    Further guidance requested... I need to clear the contents of several columns, and they're not adjacent. This clearly doesn't work: Private Sub Worksheet_Change(ByVal Target As Range) If Target.Count > 1 Then Exit Sub If Not Intersect(Target, Range("Clearer")) Is Nothing Then...
  8. LScharf

    Delete cell contents when user deletes adjacent cell contents

    The bourbon appears to have worn off... :o) Today the macro works. And for the benefit of others looking at this thread, I was able to use a named range: Private Sub Worksheet_Change(ByVal Target As Range) If Target.Count > 1 Then Exit Sub If Not Intersect(Target...
  9. LScharf

    Delete cell contents when user deletes adjacent cell contents

    It's not working in that I delete the value from cell A19 (or A20, 21, etc.) and the adjacent cells (B19, C19) stay unchanged. FYI, I am using Excel 2010.
  10. LScharf

    Delete cell contents when user deletes adjacent cell contents

    Although it actually doesn't work without the loop...
  11. LScharf

    Delete cell contents when user deletes adjacent cell contents

    Thanks! That does the trick. I added to it to cover a range of cells: Private Sub Worksheet_Change(ByVal Target As Range) If Target.Count > 1 Then Exit Sub For Each i In Range("A19:A25") If Not Intersect(Target, i) Is Nothing Then If Target.Value = "" Then...
  12. LScharf

    Delete cell contents when user deletes adjacent cell contents

    Hi, This should be pretty simple: I want to create a macro that deletes the contents of B19 and C19 as soon as the user deletes the contents of A19. I started with this but it doesn't work: Option Compare Text Sub clear_stuff() If Range("A19").Value = "" Then Range("B19:C19").ClearContents...
  13. LScharf

    Exchange Mailbox Backup Suddenly Slower

    Using Backup Exec 9, a few weeks ago the time to back up the entire server went from 7.5 hours to 9 hours. I found that the extra 1.5 hours is entirely during the backup of the Exchange Mailboxes. However, the size of those mailboxes did not change. The only change to the server that...
  14. LScharf

    cross tab query on unknown number of rows

    Have you looked into using a cursor to loop through the rows and operate on each row one at a time?
  15. LScharf

    Outlook: Select categories from email form

    I'm not sure this is realistic... but here's my ideal solution: When my Outlook 2003 users (on Exchange) start a new email message, I want them to have a way to select Categories to include as recipients, right in the email. It could be a button that pops open a custom form, or whatever. The...
  16. LScharf

    Automatic chart creation

    AHA! NOW it is!! Wow, now it works like a charm. Thanks so much.
  17. LScharf

    Automatic chart creation

    No... if I select 78 in my listbox, SelectedDRG_Index returns 78. So if SelectedDRG_Index contains the value that I want to AutoFilter on, can't I just use that in my VBA? Which is what I did, and it works, except for that pesky "AutoFilter method of Range class failed" error every time.
  18. LScharf

    Automatic chart creation

    Sorry, I meant the DRG column contains values equal to integers between 15 and 359 (with plenty o' gaps). There are 20 distinct DRG values. Each DRG has multiple rows (hospitals), so the range goes from row 10 to row 616. When I click on a value in my listbox, SelectedDRG_Index shows that...
  19. LScharf

    Automatic chart creation

    You said: 5. Your selected value is then =INDEX(DRG_List,SelectedDRG_Index,1) but this doesn't work; my DRG list contains 20 values from 15 to 359, so if SelectedDRG_Index equals 359, the formula doesn't find a value... It works when my macro is Range("A10:E616").AutoFilter Field:=1...

Part and Inventory Search

Back
Top