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
MarcLykke
Frequent Visitor

Combined IF-statements from two different tables

Hi everyone

I am trying to create a calculated column with an IF-statement from two different tables.

 

In table 1 I have all the cases.

 

In table 2 I have all the meetings.

 

Each case can have several meetings and the two tables are linked together by caseid.


Table 1:

CaseidCase start dateCase deadline date
1Date 1Date 1
2Date 2Date 2

 

Table 2:

Case idMeeting typeMeeting date
1PhoneDate 1
1PersonalDate 2

 

I would like to create a calculated column in table 1 which shows the number of meetings for the specific case between the case start date and the case deadline date.

There are several other conditions in the two tables that I want to combine, but I would like to start with this simple one in order to understand the logic behind the correct DAX.

I have tried with a simple IF-statement followed by COUNTROWS, but it doesn't seem to work with conditions from two different tables.

Can anyone help me?

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@MarcLykke , a new column in table 1

 

countx(filter(Table2, Table1[CaseID] = Table2[CaseID] && Table2[Meeting date] >= Table1[Case Start Date] && Table2[Meeting date] <= Tabel1[Case Deadline Date] ) Table2[Meeting Type] )

 

refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@MarcLykke , a new column in table 1

 

countx(filter(Table2, Table1[CaseID] = Table2[CaseID] && Table2[Meeting date] >= Table1[Case Start Date] && Table2[Meeting date] <= Tabel1[Case Deadline Date] ) Table2[Meeting Type] )

 

refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8

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