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
rav999
New Member

Measure / Column logic

Hi PBI Gurus,

 

I want to create a Measure that does this:

 

MyOrder$ = CALCULATE( IF( Products[productGroupCode]) = "AB",  [GrossOrders$] * 0.7, [GrossOrders$] ))
 
It does not work as the IF function does not accept the Products Table. There is a 1:M relationship between the FactOrders table and the Products table. What I want is a Measure (or a Column) that shows the GrossOrder$ that is 30% less when the ProductGroupCode is "AB". 
 
Existing meaure: 
GrossOrders$ = CALCULATE( SUM( FactOrders[OrderValue] ))
 
Thx in advance.
Rav
1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @rav999 .

 

try the following code:

 

Adjusted = SUMX(Products;IF(Products[ProductsGroupcode] = "AB", [GrossOrders$] * 0.7 , [GrossOrders$]))

 


Regards

Miguel Félix


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

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

2 REPLIES 2
MFelix
Super User
Super User

Hi @rav999 .

 

try the following code:

 

Adjusted = SUMX(Products;IF(Products[ProductsGroupcode] = "AB", [GrossOrders$] * 0.7 , [GrossOrders$]))

 


Regards

Miguel Félix


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

Proud to be a Super User!

Check out my blog: Power BI em Português



amitchandak
Super User
Super User

@rav999 , Try one of the

MyOrder$ = CALCULATE( IF( max(Products[productGroupCode]) = "AB", [GrossOrders$] * 0.7, [GrossOrders$] ))

 

MyOrder$ = sumx(values(Products[productGroupCode]), IF( max(Products[productGroupCode]) = "AB", [GrossOrders$] * 0.7, [GrossOrders$] ))

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.