Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

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
1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

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

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

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

4 REPLIES 4
v-gizhi-msft
Community Support
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:

32.PNG

Here is my test pbix file:

pbix 

Hope this helps.

 

Best Regards,

Giotto

 

Greg_Deckler
Super User
Super User

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

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

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...
az38
Community Champion
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() )

 


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn
camargos88
Community Champion
Community Champion

Hi @Anonymous ,

 

Try creating a measure like:

 

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

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

 

Ricardo



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.