Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

New column conditional

Hi all, I want to a new column with Profile Total only when Product Type = Profile, and GB Total only when Product Type = Storage. Does anyone know how I would do this in the context of the table below? Thanks

 

CustomerProduct TypeQuantityMetricProfile Total (desired column)

GB Total (desired column)

AProfile10Thousands10,000 
AStorage1GB 1
BProfile20Thousands20,000 
BStorage5GB 1
  • Profile Total = IF([Product Type] = "Profile",[Quantity] * 1000,BLANK())

    GB Total = IF([Product Type] = "Storage",[Quantity],BLANK())

4 Replies

  • camargos88's avatar
    camargos88
    Community Champion

    Hi Anonymous ,

     

    Try creating a measure like:

     

    Measure = CALCULATE(SUM(Quantity); ProductType = "Profile")

    Measure = CALCULATE(SUM(Quantity); ProductType = "Storage")

     

    Ricardo

  • az38's avatar
    az38
    Community Champion

    Hi Anonymous 

    try columns

    Profile Total =
    IF(Table[Product Type] = "Profile"), Table[Quantity]*1000, BLANK() )

    and

    GB Total =
    IF(Table[Product Type] = "Storage"), Table[Quantity], BLANK() )

     

  • Greg_Deckler's avatar
    Greg_Deckler
    Community Champion
    Profile Total = IF([Product Type] = "Profile",[Quantity] * 1000,BLANK())

    GB Total = IF([Product Type] = "Storage",[Quantity],BLANK())
  • v-gizhi-msft's avatar
    v-gizhi-msft
    Community Support

    Hi,

     

    Please try these two measures(showing the correct total):

    Profile Total =
    SUMX (
        GROUPBY ( 'Table', [Product Type], 'Table'[Customer] ),
        CALCULATE (
            IF (
                MAX ( 'Table'[Product Type] ) = "Profile",
                MAX ( 'Table'[Quantity] ) * 1000,
                BLANK ()
            )
        )
    )
    GB Total =
    SUMX (
        GROUPBY ( 'Table', [Product Type], 'Table'[Customer] ),
        CALCULATE (
            IF (
                MAX ( 'Table'[Product Type] ) = "Storage",
                MAX ( 'Table'[Quantity] ),
                BLANK ()
            )
        )
    )

    The result shows:

    Here is my test pbix file:

    pbix 

    Hope this helps.

     

    Best Regards,

    Giotto