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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
ReutAtias12
Frequent Visitor

return values from Intersect

Hi

I'm trying to get the LeadID that intersects two tables 

I created this measure:

 

Measure = 
 VAR _StartDate =
    CALCULATE (
        MIN ( FactMarketingFunnel[StartDate] ),
        ALL ( FactMarketingFunnel ),
        USERELATIONSHIP ( FactMarketingFunnel[StartDate], dimDates[Date] )
    )
VAR _EndDate =
    CALCULATE (
        MAX ( FactMarketingFunnel[StartDate] ),
        ALL ( FactMarketingFunnel ),
        USERELATIONSHIP ( FactMarketingFunnel[StartDate], dimDates[Date] )
    )
VAR _main =
    CALCULATETABLE (
        SUMMARIZE (
            FILTER (
                FactMarketingFunnel,
                FactMarketingFunnel[Stage] = "Leads"
                    && FactMarketingFunnel[StartDate] >= _StartDate
                    && FactMarketingFunnel[StartDate] <= _EndDate
            ),
            FactMarketingFunnel[Lead_ID],
            FactMarketingFunnel[Lead_Created_Date]
            
        ) --,
      
    )
VAR _int =
    CALCULATETABLE (
        SUMMARIZE (
            FILTER (
                FactMarketingFunnel,
                FactMarketingFunnel[Stage] = "Opportunities Won Opps"
                    && FactMarketingFunnel[StartDate] >= _StartDate
                    && FactMarketingFunnel[StartDate] <= _EndDate
            ),
            FactMarketingFunnel[Lead_ID],
            FactMarketingFunnel[Lead_Created_Date]
        ) 
    
    )


RETURN
INTERSECT ( _main, _int )

 

how can I return the relevant LeadID?

 

 

2 REPLIES 2
amitchandak
Super User
Super User

@ReutAtias12 , Assume you have a common table lead with lead ID and measure from 2 tables joined to it say M1 and M2

 

then intersect is

 

countx(values(Lead[Lead ID]), if(not(isblank([M1])) && not(isblank([M2])) , [Lead ID], blank()) )

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hi, 

M1 and M2 are virtual tables that I'm creating in the measure

They are supposed to be dynamic base on the user filters for the stage field

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.