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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
Anonymous
Not applicable

Create a table that records values every hour

Hello,

 

I am seeking the help of the community for something I want to do in Power Query.

I want to create a new table that calculates every day, a value and store it in a new table. 

Ideally the result would be a new table with 3 columns:

one date column: from 01/05/2023 til 31/12/2023 

one column that sums all the rows of a column in an existing table (tickets creates)

a second a column that sums as well all the rows of a column in an existing table (tickets resolved).

 

The purpose is to generate a graph that shows day by day how many tickets are created and how ma y tickets are resolved.

 

Many thanks for your help!

 

3 REPLIES 3
wdx223_Daniel
Super User
Super User

as your description, had better resovle it in DAX

say,

1 create a datetable, and mark it as date table

2 creat a relationships with date columns between the datetable and your data table

3 put the date column of datetable in the row area of a matrix visual

4 create two measure, and put them in the value area

TicketsCreated=COUNTROWS(FILTER(DataTable,DataTable[Status]="Created"))

TicketsResovled=COUNTROWS(FILTER(DataTable,DataTable[Status]="Resolved"))

Anonymous
Not applicable

Hi @Anonymous 

Can you provide some sample data and the output you want so that can provide more suggestion for you.

 

Best Regards!

Yolo Zhu

 

speedramps
Super User
Super User

We want to help you but your description is too vaugue. Please write it again clearly.

Please just give a simple non technical functional decscription of what you want, then let us suggest the DAX. Thank you.

Provide example input data as table text (not a screen print) so we can import the data to build a solution for you.
Also provide the example desired output, with a clear description of the process flow.

Remember not to share private data ... we don't want you to get into trouble. 😧

Take time and care to use the same table and field names in the input, output and description so we can understand your problem and help you.

You will get a quick response if you put time, care and effort into writing clear problem descriptions.

Vaugue descriptions can waste your time and ourtime.

Look foward to helping you when the above information is forthcoming

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors
Top Kudoed Authors