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
abhiram342
Employee
Employee

Help on Treatas DAX Code

Hi All,

 

I want to create measure for below scenario but not working as expected. Can someone please assist?

 

Scenario:

I want to get distinct Products with either no internet sales or Offline sales

EX:

In Internet sales: 2,4 ( productID)

In Offline Sales :2,3 (ProductID)

Final Measure: 2,3,4 ( Unique product from Internet and Offline Sales

DimProduct:

ProductIdProductName
1Bike
2Car
3Bi-Cycles

FactInternetSales

ProductIdSalesAmount
110
20
350
40

FactOfflineSales

ProductIdSalesAmount
110
20
30
410

 

Thanks,

Abhiram

2 REPLIES 2
Jihwan_Kim
Super User
Super User

Hi, @abhiram342 

Please correct me if I wrongly understood your question.

I assume you want to create a new table.

please try the below for creating a new table.

 

Picture2.png

 

new table =
DISTINCT (
UNION (
SUMMARIZE (
FILTER ( InternetSales, InternetSales[SalesAmount] = 0 ),
InternetSales[ProductId]
),
SUMMARIZE (
FILTER ( OfflineSales, OfflineSales[SalesAmount] = 0 ),
OfflineSales[ProductId]
)
)
)
 

Hi, My name is Jihwan Kim.


If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.


Linkedin: linkedin.com/in/jihwankim1975/

Twitter: twitter.com/Jihwan_JHKIM

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


amitchandak
Super User
Super User

@abhiram342 , Create a measure like

 

new measure =Sum(FactInternetSales[SalesAmount]) + Sum(FactOfflineSales[SalesAmount])

 

Then create this measure 

check measure =
calculate( if( isblank([new measure]),1,blank()))

 

or


check measure =
countx(values(DimProduct[ProductId] ) if( isblank([new measure]),[ProductId],blank()))

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.

Top Solution Authors