Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Multiplication within column to aggregate BOM levels

Hello,   I have an exploded BOM using ImkeF's method of conversion from a flat table, but now am having a dilemma in a parent-child conversion problem.         For each item in 'Exploded_...
  • v-jiascu-msft's avatar
    7 years ago

    Hi Anonymous,

     

    Please try this formula as a calculated column. 

    Column =
    CALCULATE (
        PRODUCTX (
            SUMMARIZE ( 'Table1', 'Table1'[BW_Parentltem], Table1[Level], [Backflush Qty] ),
            [Backflush Qty]
        ),
        FILTER (
            ALLEXCEPT ( Table1, Table1[BW_Parentltem] ),
            'Table1'[Level] <= EARLIER ( Table1[Level] )
        )
    )
    

    Multiplication-within-column-to-aggregate-BOM-levels

     

    Best Regards,
    Dale