1. Try loading Excel in safe mode: On the Start menu Click Run Type in: Excel.exe /s or use the complete path, which will probably be: C:\Program Files\Microsoft Office\Office\Excel.exe /s This will bypass all files in any Excel startup folder as well as Add-ins and some registry settings. If the /s opRead more

    Try loading Excel in safe mode:
    On the Start menu
    Click Run

    Type in: Excel.exe /s

    or use the complete path, which will probably be:

    C:\Program Files\Microsoft Office\Office\Excel.exe /s

    This will bypass all files in any Excel startup folder as well as Add-ins and some registry settings.

    If the /s option didn’t work, the only other thing I can think of is to try:
    /unregserver
    Which will force Excel to unregister itself, then run

    /regserver
    Which will force Excel to re-register itself and then quit.

    See less
    • 0
  2. Hi, Change the line spacing in the 'Envelope Address' style. There is a specific Style called 'Envelope Address' which holds the formatting for envelopes, including line spacing. I don't have Word 2007 on this PC so I can't give you step by step instructions to get to Styles, but it's the same as chRead more

    Hi,
    Change the line spacing in the ‘Envelope Address’ style.

    There is a specific Style called ‘Envelope Address’ which holds the formatting for envelopes, including line spacing.

    I don’t have Word 2007 on this PC so I can’t give you step by step instructions to get to Styles, but it’s the same as changing say a Heading style.

    Regards

    See less
    • 0
  3. Can't help with a Macro, but there are ways to do a key word search using the =SEARCH() function.

    Can’t help with a Macro, but there are ways to do a key word search using the =SEARCH() function.

    See less
    • 0
  4. This code is adapted from the example given in the VBA Help files for the GetSaveAsFilename amd SaveAs methods.I put it inside the Workbook_Open event so that the Save As dialog box opens whenever the workbook is opened.As written, it does not prevent the user from canceling the Save As, so that wouRead more

    This code is adapted from the example given in the VBA Help files for the GetSaveAsFilename amd SaveAs methods.

    I put it inside the Workbook_Open event so that the Save As dialog box opens whenever the workbook is opened.

    As written, it does not prevent the user from canceling the Save As, so that would have to be added if needed.

    1 – Use Alt-F11 to open the VBA editor.
    2 – Double-click the ThisWorkbook entry under the VBA Project list.
    3 – Paste the following code into the pane that opens and save the file.

    Private Sub Workbook_Open()
      fileSaveName = Application.GetSaveAsFilename( _
        fileFilter:="Excel Workbooks (*.xls), *.xls")
      If fileSaveName <> False Then
        Me.SaveAs Filename:=fileSaveName
      End If
    End Sub

    See less

    • 0
  5. if the date in the second column is greater than 5 days compared to the first column.So using your example date:$D$13 = 1/12/2011 17:30$B$13 = 1/1/2011 12:00I first highlighted cells A13 through P13.And using your formula: =IF($D$13>=$B$13+5,TRUE,FALSE)it worked for me.I highlighted cells A13 thrRead more

    if the date in the second column is greater than 5 days compared to the first column.

    So using your example date:

    $D$13 = 1/12/2011 17:30

    $B$13 = 1/1/2011 12:00

    I first highlighted cells A13 through P13.

    And using your formula: =IF($D$13>=$B$13+5,TRUE,FALSE)
    it worked for me.

    I highlighted cells A13 through P13.

    MIKE

    http://www.skeptic.com/

    See less
    • 0
  6. Visit setup.office.com and sign in with your Microsoft account or create a new account. Enter your product key (or activation code). ... Select Install Office. ... If the User Account Control asks whether you want to allow the app to make changes to your device, select Yes.

    Visit setup.office.com and sign in with your Microsoft account or create a new account.
    Enter your product key (or activation code). …
    Select Install Office. …
    If the User Account Control asks whether you want to allow the app to make changes to your device, select Yes.

    See less
    • 0
  7. That device is not even listed on the drivers page of the Samsung website so I can't help you I'm afraid. Note: It's both pointless and unwise to include your email address when posting on forums. Pointless because we do not reply by email as that defeats the purpose of having a forum. Unwise becausRead more

    That device is not even listed on the drivers page of the Samsung website so I can’t help you I’m afraid.
    Note: It’s both pointless and unwise to include your email address when posting on forums.

    Pointless because we do not reply by email as that defeats the purpose of having a forum.

    Unwise because anyone can see your email address and you will receive even more junk mail than you do already. I don’t think you want that.

    See less
    • 0
  8. Check remote desktop application settings. Options -> Local Resources -> Printers checkbox should be unchecked. I don't know the source of problem but this help in my case to avoid annoying 'Redirected Docs' in printing queue. BTW, if you need to redirect local printer into RDP session I'd recRead more

    Check remote desktop application settings. Options -> Local Resources -> Printers checkbox should be unchecked. I don’t know the source of problem but this help in my case to avoid annoying ‘Redirected Docs’ in printing queue.

    BTW, if you need to redirect local printer into RDP session I’d recommend you to use third-party software, like Printer for Remote Desktop

    See less
    • 0
  9. Select the cell that wish to Conditionally Format, e.g. A1.Try this formula:=A1<TODAY()+30If you need to CF a range, select the entire range and use the first cell in the range in your formula. The CF will be applied to each cell individually.Click Here Before Posting Data or VBA Code ---> HowRead more

    Select the cell that wish to Conditionally Format, e.g. A1.

    Try this formula:

    =A1<TODAY()+30

    If you need to CF a range, select the entire range and use the first cell in the range in your formula. The CF will be applied to each cell individually.

    Click Here Before Posting Data or VBA Code —> How To Post Data or Code.

    See less
    • 0
  10. Please post this question in it's own thread with a relevant subject line.This thread had morphed from a "compiler error" question to a question about how to code a specific mathematical operation in VBA. In order to keep the archives organized, your current question deserves it's own thread.DerbyDaRead more

    Please post this question in it’s own thread with a relevant subject line.

    This thread had morphed from a “compiler error” question to a question about how to code a specific mathematical operation in VBA. In order to keep the archives organized, your current question deserves it’s own thread.

    DerbyDad03
    Office Forum Moderator

    Click Here Before Posting Data or VBA Code —> How To Post Data or Code.

    See less
    • 0