Posts by mrmmickle1

    Re: Watch cell?


    B.W.B,


    In order to accomplish what you want you should put this code in the worksheet module and create a new worksheet called 'Changes'. It will create a record of changes to the cell you want to track (in this case A1):


    Example of resulting Values:


    [TABLE="width: 315"]

    [tr]


    [td]

    Previous Value

    [/td]


    [td]

    New Value

    [/td]


    [td]

    Date Changed

    [/td]


    [/tr]


    [tr]


    [td]

    MyFirstVal

    [/td]


    [td]

    MyNewVal

    [/td]


    [TD="align: right"]6/10/16 11:57 PM[/TD]

    [/tr]


    [tr]


    [td]

    MyNewVal

    [/td]


    [td]

    NewerValue

    [/td]


    [TD="align: right"]6/10/16 11:58 PM[/TD]

    [/tr]


    [tr]


    [td]

    NewerValue

    [/td]


    [td]

    GetThePicture

    [/td]


    [TD="align: right"]6/11/16 12:01 AM[/TD]

    [/tr]


    [/TABLE]

    Re: Inserting totals of the Rows aboe where there is a blank line


    What about something like this:


    Re: Finding a word and deleting a range of rows from there


    What about something like this:


    Re: Listbox row item does not appear on UserForm2 until double click twice for same r


    You need to change this sub in UserForm1:


    Code
    Private Sub ListBox1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
        UserForm2.Show
    End Sub


    Then use this code in UserForm2:


    Re: Get URL from intranet link name...need help.


    Change this section of code to this and report back:





    It's difficult to troubleshoot IE automation without html source code. Hopefully this helps you identify the issue, but I'm guessing it will just bring more questions.


    If you get the msgbox then your link is being found correctly and your click code is the issue....otherwise the find the Link portion of the code is wrong....


    If the click code is wrong maybe consider trying this:


    Code
    Set myLinks = ie.document.getElementsByTagName("a") 
        For Each mySingleLink In myLinks 
            If mySingleLink.innerText = "OT Claim Form (May 2016 Payroll)" Then 
            mysingleLink.Click
            End If 
        Next


    Cross Posted Here: http://www.mrexcel.com/forum/e…t-link-name-pls-help.html

    Re: Get URL from intranet link name...need help.


    Please don't cross post. It wastes community member's time. Sometimes it takes a lot of effort to provide a solution. When you cross post this effort is duplicated, which is very disrespectful to the people who are working on a solution....considering the question could very likely have already been answered on another forum.


    Try this:



    Note: I have posted the answer on the Mr. Excel Thread as well....

    Re: Getting data with web query and rearrange the data


    Here is the answer to your inquiry. The IsNumber Function can be credited to Rick Rothstein:



    Thread is also at: THIS LINK

    Re: Get URL from intranet link name...need help.


    There are several ways to accomplish your task. Past this code in a regular code module.


    Here is one way:



    Please refer to this thread I answered a while back for another method using IE: CLICK HERE FOR SECOND OPTION

    Re: Send Email from Excel (Lotus Notes)


    It appears that your code is looping through row 1 to the LastRow of data in column A. Is this what you intend it to do?


    Code
    For x = 1 To Cells(Rows.Count, "A").End(xlUp).Row


    For each row successfully executed you are getting the msgbox. How many rows of data do you have? You can expect to get that many msgbox pop ups....

    Re: user to change their Password every 60 day


    Put the date when their name was added to the list in the 3rd column on your sheet:


    Re: IF formula - False portion


    If you need to go through multiple scenarios you can use formulas like this:


    Code
    =If(x=y, "One Value", IF(x=z, "Another value", If( x=a, "Third Value, "")))


    If you need multiple conditions use:


    Code
    =IF(AND(x=y, x=z),"x equals both values", "x does not equal both values")

    Re: Formatting across multiple grouped sheets; then ungroup


    Try something like this: