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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
qwertzuiop
Advocate III
Advocate III

analyse total number of e-mails sent per day

I am very new to Power BI, but I have to present my work in a few days.

 

As you can see in the table, we have the collums:

- transportID

- created

- amountOfEmails

 

dsf.PNG

 

What I need to present is the total number of mails sent per day in a list and as a bar chart.

Can anyone help me?

 

PS: At the moment I only got this.

adsf.PNG

Thank you very much.

qwertzuiop

1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @qwertzuiop 

1. Create an additional column with the date only: 

CreationDate = INT( Table1[Created] )

and and convert to Date type

2. Place Table1[CreationDate] in the rows of a table visual and in the axis of a bar chart

3. Place this measure in both visuals:

NumEmails =
SUM( Table1[amountOfemails] )

 

Please mark the question solved when done and consider giving kudos if posts are helpful.

Cheers  Datanaut

View solution in original post

2 REPLIES 2
AlB
Super User
Super User

Hi @qwertzuiop 

1. Create an additional column with the date only: 

CreationDate = INT( Table1[Created] )

and and convert to Date type

2. Place Table1[CreationDate] in the rows of a table visual and in the axis of a bar chart

3. Place this measure in both visuals:

NumEmails =
SUM( Table1[amountOfemails] )

 

Please mark the question solved when done and consider giving kudos if posts are helpful.

Cheers  Datanaut

@AlB thank you so much for the solution.

 

I wish you all the best!

qwertzuiop

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.

Top Solution Authors