Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi,
I need to add a new measure to sum the total of newsletter sends. Currently my measure shows the total of ALL email campaign sends - this includes newsletters, webinar invites etc.
Solved! Go to Solution.
Try this
CALCULATE(
SUM('Mailchimp Campaign'[Send]),
FILTER(
'Mailchimp Campaign',
CONTAINSSTRING('Mailchimp Campaign'[Name],"newsletter")
),
USERELATIONSHIP('Mailchimp Campaign'[Sent On],'Date'[Date]))
To calculate the total number of newsletter sends, you can modify your measure by adding a filter condition using the CONTAINS function. Here's an example of how you can modify your measure to only calculate sends where the 'name' column contains 'newsletter':
Newsletter sends =
CALCULATE(
SUM('Mailchimp Campaign'[Send]),
USERELATIONSHIP('Mailchimp Campaign'[Sent On], 'Date'[Date]),
CONTAINS('Mailchimp Campaign', 'Mailchimp Campaign'[name], "newsletter")
)
Thank you
Hi @hpayne93
I havent' tested the below code, it should work
CALCULATE(
SUM('Mailchimp Campaign'[Send]),
FILTER(
'Mailchimp Campaign',
'Mailchimp Campaign'[Name] = 'newsletter'
),
USERELATIONSHIP('Mailchimp Campaign'[Sent On],'Date'[Date]))
Hey, thanks for the reply!
That doesn't quite work. I want to see the total where 'mailchimp campaign' [name] contains 'newsletter' -- do i need to use CONTAINSSTRING?
Try this
CALCULATE(
SUM('Mailchimp Campaign'[Send]),
FILTER(
'Mailchimp Campaign',
CONTAINSSTRING('Mailchimp Campaign'[Name],"newsletter")
),
USERELATIONSHIP('Mailchimp Campaign'[Sent On],'Date'[Date]))
It worked! Thanks very much
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
60 | |
60 | |
54 | |
38 | |
27 |
User | Count |
---|---|
85 | |
60 | |
45 | |
41 | |
39 |