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
Anonymous
Not applicable

Line Graph in Power BI

Hi, 
I need to create a line that shows the weekly Email Open rate 

 

Example of Original Data:

ajantika25_0-1618284232621.png

 

I have email id, email name, activity date(when an email was sent and opened), SentCount, Open Count, week and month

Assumption:

1. An email is sent only on 1 Date

2. Email can be opened on multiple days

3. OpenWeek is Sent Date - Open Date in Weeks

 

How can I create a line chart in Power Bi that would show the weekly open rate 

 

Example if I create a Rate Table:


ajantika25_1-1618284410369.png

 

I want to create a line graph that would should the Weekly Open rates:

 

ajantika25_2-1618284501895.png

 

3 REPLIES 3
Anonymous
Not applicable

@amitchandak 
Sorry, I could not follow.
I have an Activity date that has the date of when an activity was done either sent or opened.
Now I need to calculate the open rate in weeks [1, 2 , 3...... 52 weeks] after an email was sent.

And show the open rates in weeks in a line graphs

Anonymous
Not applicable

@amitchandak 
The rates will be in % 

amitchandak
Super User
Super User

@Anonymous , Not very clear.

But the measure

Ratio = divide(sum(Table[Open Count]), sum(Table[SentCount]))

 

Is the one should give %. Then move Week Date(Activity Date), Month and Month week number to Date/week table and create a week Rank column

 

Week Rank = RANKX(all('Date'),'Date'[Week date],,ASC,Dense)

 

You can visualize with week of you can create measure to compare

Then measures

measures
This Week = CALCULATE([Ratio], FILTER(ALL('Date'),'Date'[Week Rank]=max('Date'[Week Rank])))
Last Week = CALCULATE[Ratio], FILTER(ALL('Date'),'Date'[Week Rank]=max('Date'[Week Rank])-1))

 

 

Power BI — Week on Week and WTD
https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3
https://community.powerbi.com/t5/Community-Blog/Week-Is-Not-So-Weak-WTD-Last-WTD-and-This-Week-vs-Last-Week/ba-p/1051123
https://www.youtube.com/watch?v=pnAesWxYgJ8

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.