Consulting

Results 1 to 1 of 1

Thread: Solved: Need to modify a complex formula in excel 2007

  1. #1

    Solved: Need to modify a complex formula in excel 2007

    I need to modify a complex array formula.

    Here's the logic....

    1st condition:
    if the value in column A matches with the value of column A in previous row;
    Condition passes....
    Then check
    if the value in Column E has occurred for the 1st time for similar value of column A
    Condition passes....
    Then, the value in Nx = 100 - (Mx*100)

    2nd Condition:
    if the value in column A is not equal to the value of column A in previous row;
    Condition passes.....
    Then , the value in Nx = 100 - (Mx*100)

    3rd Condition:
    if the value in column A matches with the value of column A in previous row;
    Condition passes....
    Then check
    if the value in column E has occured earlier for similar value of column A
    Condition passes.....
    Then, the value in Nx = Ny-(Mx*100)

    Here,
    Ny denotes the value of N where the Ex has occured last time.

    and so on...

    Please note that if value in A changes it should not take into consideration any values of E, M or N etc for any other values of A.

    To implement this logic I've the formula "==IF(AND($A$2:$A12=A13,MATCH(E13,E:E,0)=ROW()),((100-(M13*100))/100),INDEX(N$2:N12,SMALL(IF(E$2:E13=E13,ROW(E$2:E13)),COUNTIF(E$2:E13,E13)-1)-1,1)-M13)" in N13.

    But over here, the formula doesn't give me the expected result (75%).

    Could you help me correct this?


    I've attached the excel for reference.
    Attached Files Attached Files

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •