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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

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())


Follow on LinkedIn
@ 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!:
Power BI Cookbook Third Edition (Color)

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())


Follow on LinkedIn
@ 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!:
Power BI Cookbook Third Edition (Color)

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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