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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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