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
sandip
Helper III
Helper III

How to join tables in dax

Hi,

Need to join below tables:

Opened Trend =
var vOpenedTicket = Summarize(
'Parent', 'Parent'[Opened Month],"Parent Open Count", COUNT('Parent'[sys_id])
)
var vClosedTicket = Summarize(
'Parent','Parent'[Closed Month],"Parent Close Count", COUNT('Parent'[sys_id])
)
now need to join 2 tables which will have 3 columns like:
Month name, Open Ticket Count, Closed Ticket Count
 
need advise how to do that?
 
1 ACCEPTED SOLUTION

@sandip solution is attached

 

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!

Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

View solution in original post

5 REPLIES 5
az38
Community Champion
Community Champion

Hi @sandip 

maybe it would be better to create two new measures in the original Parent table?

Parent Open Count = CALCULATE(COUNT('Parent'[sys_id]), ALLEXCEPT('Parent', 'Parent'[Opened Month]) )

Parent Close Count = CALCULATE(COUNT('Parent'[sys_id]), ALLEXCEPT('Parent', 'Parent'[Closed Month]) )

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

Hi,

I need to show line chart based on Month as dimension and 2 measure values like below:

Capture.JPG

but when I created 2 measures and use opened montha as dimension it did not work.

@sandip I think the solution is using date dimension table. As a best practice, add date dimension in your model and use it for and time intelligence calculations. Once the date dimension is added, mark it as a date table on table tools.

https://perytus.com/2020/05/22/create-a-basic-date-table-in-your-data-model-for-time-intelligence-ca...

 

After date dimension is added, set a relationship between open and close month with your date dimension in the table, one relation will be active (assuming relationship with open month is active) and other will be inactive.

 

add following measures

 

Open Tickets = COUNTROWS ( Table )
Closed Tickets = CALCULATE ( [Open Tickets], USERELATIONSHIP(  DateTable[Date], Table[Closed Month] ) )

 

In your visual, use month from date dimension and add above measures on the value and everything should work.

 

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!

Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Hi,

I have attached a sample data file for reference:

https://drive.google.com/file/d/13CYVgLKtLIjPNco9bR8pGxnQxtMHAltG/view?usp=sharing

 

can you make a pbix file for me.

@sandip solution is attached

 

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!

Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

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.