Posts by Carim

    Re: Tracking overtime in excel


    Hello Sarah,


    When it comes to displaying negative times ... just change the date system used by your workbook .. to the 1904 date system in the Excel Options Advanced menu ...


    HTH

    Re: ADD picture


    Hello,


    Your sheet Photos can hold as many pictures as you want ... as long as you give them a name starting with the word Photo ...


    Regarding the code itself, you can test the following ... with your own adjustments ...


    Code
    Sub AddPic()
        Const FName As String = "C:\Documents and Settings\My Documents\My Pictures\Homard.jpg"
        Dim Image As OLEObject
        Set Image = ActiveSheet.OLEObjects.Add(ClassType:="Forms.Image.1", Link:=False, _
            DisplayAsIcon:=False, Left:=12.75, Top:=183, Width:=39, Height:=35.25)
        Image.Object.Picture = LoadPicture(FName)
    End Sub


    HTH

    Re: ADD picture


    Hello,


    It looks like this file from Boisgontier is already working fine ...


    Do you need to modify it ?

    Re: SUM Specific Date with Different Sheet


    Quote from great.liberty;760630

    wow... it works just the way I want it. :thumbup:
    Thank you very much Carim.


    Hi,


    Glad you could fix your problem ...


    Thanks a lot ... for your thanks :smile:

    Re: SUM Specific Date with Different Sheet


    Hello,


    You could try following ...


    Code
    =SUM(INDIRECT("Sheet1!"&TEXT(ADDRESS(ROW(Sheet1!A7),MATCH(Sheet1!$BX$5,Sheet1!$E$6:$BS$6,0)+4),0)):INDIRECT("Sheet1!"&TEXT(ADDRESS(ROW(Sheet1!A7),MATCH(Sheet1!$BY$5,Sheet1!$E$6:$BS$6,0)+4),0)))


    HTH

    Re: if a match then bring back data


    Hi,


    In cell C2 ... you could test following

    Code
    =INDEX('Product Info'!$A$2:$F$4,MATCH(A2,'Product Info'!$A$2:$A$4,0),MATCH(B2,'Product Info'!$A$1:$F$1,0))


    HTH

    Re: Autoloop through the auto filter copy and paste each result....


    Hi,


    As an initial step, you can use following code ... to explode your data ...



    HTH

    Re: conditional formatting


    Quote from hemanth babu;759800

    thank you.....
    issue solved....


    Glad you could fix your problem ...


    Thanks ... for your thanks :wink:

    Re: conditional formatting


    Quote from hemanth babu;759794

    " you cannot use references to other worksheet or workbooks for conditional formatting criteria ".


    Hi,


    To overcome this ... you only need to create a name for the range ... and use the name in your criteria formula ...


    HTH

    Re: Sumif and Offset


    Hello,


    You can have the following formula in cell O170


    =SUMIF('Sheet 2'!$B$11:$B$244,Sheet1!B170,OFFSET('Sheet 2'!$D$11:$D$244,4,0))


    Then, you can copy this formula all the way down till your last row O453


    HTH

    Re: Conditional Formatting multiple and or criteria


    Quote from Lorrie3292;756253

    Thank you Carim! I never could have figured this out without you! Most appreciated and it works great!


    Hello Lorrie,


    Quite pleased you could solve your problem ...:smile:


    Thanks .... for your thanks ...:wink:

    Re: Sumif and Offset


    Hello MS.X,


    Difficult to guess the structure of your Excel file ...


    Would you mind attaching your workbook ...:wink: