Forum Discussion

ishaqib's avatar
ishaqib
Copper Contributor
Jan 07, 2023

Sum of incentive amount based on the cell values

Hey there, I m trying to calculate the total sum of incentive amount in term of models. I am attaching a screenshot where you easily understand things.   In table 1 , These are the models no ...
  • SergeiBaklan's avatar
    SergeiBaklan
    Jan 07, 2023

    ishaqib 

    We may do step by step

    In first step we return the matrix where each column corresponds to each model in Table1. Row indicates if such model is in related row of Table2 in Models. We use double dash "--" to convert TRUE and FALSE to 1 and 0 accordingly.

    On second step we MMULT above matrix with incentives column of Table1. MMULT multiplies values in each row of matrix on related incentives value and return the sum for the row (first column matrix value * first row incentives value + second column matrix value * second row incentives value).

    On third step we generate current name filter on Names in Table2.

    Finally multiply one on another and sum resulting vector to have total sum for the current name.

Resources