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

Returning related text value based on min of some other value

Hi, I'm trying to build some marketing reports that show the initial type of campaign that each person responded to.

 

I've extracted some data which is related as follows:

  • Person has a one-to-many relationship with CampaignMember
  • CampaignMember has a many-to-one relationship with a Campaign.

 

pbi-model.PNG

 

For each row in the Person table, I would like to get the Campaign[Type] that is related to the CampaignMember with the earliest (lowest) FirstRespondedDate.

 

So if a Lead has 5 Campaign Members, get the Campaign Member row with the earliest (lowest) FirstRespondedDate, and return the Campaign[Type] that is related to that Campaign Member.

 

The first step I took was to add a custom column to Campaign Member to get the Type from the related Campaign.

 

CampaignType = RELATED(Campaign[Type])  

On the Person table, I tried a custom column with this formula:

First Lead Source = LOOKUPVALUE(
	'Campaign Member'[CampaignType],
	'Campaign Member'[FirstRespondedDate],
	MIN('Campaign Member'[FirstRespondedDate])
)

 But I got the error "A table of multiple values was supplied where a single value was expected"

 

I've tried a few variations on this formula, but I'm stuck. Any help or guidance is greatly appreciated!

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@joefusaro,

 

You may refer to the following DAX that adds a calculated column.

Column =
CALCULATE (
    SELECTEDVALUE ( 'Campaign Member'[CampaignType] ),
    TOPN (
        1,
        RELATEDTABLE ( 'Campaign Member' ),
        'Campaign Member'[FirstRespondedDate], ASC
    )
)
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-chuncz-msft
Community Support
Community Support

@joefusaro,

 

You may refer to the following DAX that adds a calculated column.

Column =
CALCULATE (
    SELECTEDVALUE ( 'Campaign Member'[CampaignType] ),
    TOPN (
        1,
        RELATEDTABLE ( 'Campaign Member' ),
        'Campaign Member'[FirstRespondedDate], ASC
    )
)
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.