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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

Multiple Conditions from Different Tables

Hello guys, 

 

I need to create a measure/column that is pulling items from three different tables: I need to calculate applications ID (from table 1) when the program is Computer (from table 2) or when activity is either 1,2, or 3 (from table 3). 

 

 I currently have this: 

 

Dax=calculate(distinct(count(application_ID), Program="1" || (activity=1 || activity=2 || activity=3))

 

But because I am creating a measure, I can't pull columns from other tables, as they are not coming when I type the column names. 

Please help.

Thanks, 

Sona

3 REPLIES 3
Anonymous
Not applicable

HI @Anonymous,

Did any update for these? If you want to calculate based on multiple table fields, it should be better to share the table structure and relationship mapping.

For example: these tables are linked based on application_ID fields.

measure =
VAR t2List =
    CALCULATETABLE (
        VALUES ( Table2[application_ID] ),
        FILTER ( ALLSELECTED ( Table2 ), Table2[activity] IN { 1, 2 } )
    )
VAR t3List =
    CALCULATETABLE (
        VALUES ( Table3[application_ID] ),
        FILTER ( ALLSELECTED ( Table3 ), Table3[activity] = 3 )
    )
RETURN
    CALCULATE (
        COUNTROWS ( VALUES ( Table1[application_ID] ) ),
        FILTER (
            ALLSELECTED ( Table1 ),
            Table1[Program] = "1"
                || Table1[application_ID] IN UNION ( t2List, t3List )
        )
    )

Regards,

Xiaoxin Sheng

Anonymous
Not applicable

HI @Anonymous,

Can you please explain more detailed information to help us clarify your data structure and requirement? (e.g. data source type, relationship mapping...)

How to Get Your Question Answered Quickly

Regards,

Xiaoxin Sheng

Ashish_Mathur
Super User
Super User

Hi,

It will depend up on the layout of your tables and the relationships.  To get more help, share the link from where i can download your PBI file and show the expected result clearly.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors
Top Kudoed Authors