Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

SUMX with modifications

Hi, I have a table with 3 columns, Item, Unit of Measure, and Quantity.     Item Unit of Measure Quantity A kg 1 B mg 1000000 C mg 1000000 A mg 1000000 I want to ad...
  • AlB's avatar
    7 years ago

    Hi Anonymous

     

    Try this, where Table1 is the table you show:

     

    1. Set Table1[ID] in the rows of a matrix visual

    2. Create this measure and place it in values of the matrix:

     

    Measure =
    SUMX (
        Table1,
        IF (
            Table1[Unit of Measure] = "kg",
            Table1[Quantity] * 1000000,
            Table1[Quantity]
        )
    )
  • Greg_Deckler's avatar
    7 years ago

    So, something like:

     

    Measure = 
    VAR __table = SUMMARIZE('Table4',[Item],[Unit of Measure],"__quantity",IF([Unit of Measure]="kg",SUM([Quantity])*1000000,SUM([Quantity])))
    RETURN
    SUMX(__table,[__quantity])

    ?

     

    See attached Table 4, Page 3