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
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
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.

Top Solution Authors