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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Anonymous
Not applicable

Count filter use relationship

Hello experts, hoping someone can help me.

I have opportunity records that have a primary contact.

I have campaign response records that have a contact.

The opportunity record has a created on date.

The campaign response record has a received on date.

I would like to identify the opportunities, where the primary contact has campaign responses, but the campaign response received on date is before the opportunity created on date, but not more than 1 year before the opportunity was created.

I thought it would be a measure with userrelationship from the opportunity contact to the campaign response contact, but get lost after that.

Any direction is helpful, thanks!
1 ACCEPTED SOLUTION
v-deddai1-msft
Community Support
Community Support

Hi @Anonymous ,

 

You did not provide sample data, but I did the test based on the data in your previous posts.

 

Please refer to the dax code for measure:

 

 

Measure =

CALCULATE (

COUNT ( 'Campaign Responses'[Campaign Name] ),

FILTER (

'Campaign Responses',

YEARFRAC (MAX(Opportunities[Created On]), 'Campaign Responses'[Date] ) >= 0

&& YEARFRAC ( MAX(Opportunities[Created On]), 'Campaign Responses'[Date] ) <= 1

)

,USERELATIONSHIP('Campaign Responses'[Contact Name],Opportunities[Primary Contact Name])

)

 

 

And you should create an inactive relationship between 'Campaign Responses' and 'Opportunities' for USERELATIONSHIP function :

 

Untitled picture1.png

 

For more details, please refer to pbix file:https://qiuyunus-my.sharepoint.com/:u:/g/personal/pbipro_qiuyunus_onmicrosoft_com/EfE0_V2UdL1ItePx07JxA7sBwuJoXnbjuoZ2Ydk3TlxuxQ?e=IPmJhg

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Best Regards,

Dedmon Dai

View solution in original post

3 REPLIES 3
v-deddai1-msft
Community Support
Community Support

Hi @Anonymous ,

 

You did not provide sample data, but I did the test based on the data in your previous posts.

 

Please refer to the dax code for measure:

 

 

Measure =

CALCULATE (

COUNT ( 'Campaign Responses'[Campaign Name] ),

FILTER (

'Campaign Responses',

YEARFRAC (MAX(Opportunities[Created On]), 'Campaign Responses'[Date] ) >= 0

&& YEARFRAC ( MAX(Opportunities[Created On]), 'Campaign Responses'[Date] ) <= 1

)

,USERELATIONSHIP('Campaign Responses'[Contact Name],Opportunities[Primary Contact Name])

)

 

 

And you should create an inactive relationship between 'Campaign Responses' and 'Opportunities' for USERELATIONSHIP function :

 

Untitled picture1.png

 

For more details, please refer to pbix file:https://qiuyunus-my.sharepoint.com/:u:/g/personal/pbipro_qiuyunus_onmicrosoft_com/EfE0_V2UdL1ItePx07JxA7sBwuJoXnbjuoZ2Ydk3TlxuxQ?e=IPmJhg

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Best Regards,

Dedmon Dai

Anonymous
Not applicable

Wow - Thank you for the response. This works!

Greg_Deckler
Super User
Super User

Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.