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
JrKoh
Frequent Visitor

Downsampling data

Hi all,

 

I want to downsample my data from every second to every minute/hour. I have splitted the Date and Time from DateTime and tried grouping it by per min/hour but I cannot figure out how to select, say 12:00:00am data in the 12:00:00pm - 12:00:59pm, and every minute data after. I just want to take out a data at a fixed interval without the need to sum, average or do any other operations to be shown in the visual.

 

DateTimeDateTimeminhourSensorValue
1/8/2021 12:00:00 pm1/8/202112:00:00 pm012A843
1/8/2021 12:00:01 pm1/8/202112:00:01 pm012A994
1/8/2021 12:00:02 pm1/8/202112:00:02 pm012A994
.....................
1/8/2021 12:00:03 pm1/8/202112:00:59 pm012A873
1/8/2021 12:01:00 pm 1/8/202112:01:00 pm112A692
.........  ......
1/8/2021 01:00:00 pm 1/8/202101:00:00 pm013A899

 

Any help or advice will be appreciated, thank you

 

2 ACCEPTED SOLUTIONS
v-stephen-msft
Community Support
Community Support

Hi @JrKoh ,

 

You can create a calculated column like

 

 

Time = TIME(HOUR([DateTime]),MINUTE([DateTime]),0)

 

 

2.png

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

Hi Stephen,

With your solution in mind, I found a way to downsample the data. I created 2 calculated column, Time_1min and Time_H and wrote another DAX measure and put it into the chart filter. I then key in the number into the filter to determine which sampling:

 

Downsample =
SWITCH(
TRUE(),
SUM(Sensor[Time]) == SUM(Sensor[Time_H]),1,
SUM(Sensor[Time]) == SUM(Sensor[Time_1min]),3
)

 

JrKoh_1-1641449400159.png
per hour
 
JrKoh_3-1641449500205.png

per min

 

View solution in original post

2 REPLIES 2
v-stephen-msft
Community Support
Community Support

Hi @JrKoh ,

 

You can create a calculated column like

 

 

Time = TIME(HOUR([DateTime]),MINUTE([DateTime]),0)

 

 

2.png

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi Stephen,

With your solution in mind, I found a way to downsample the data. I created 2 calculated column, Time_1min and Time_H and wrote another DAX measure and put it into the chart filter. I then key in the number into the filter to determine which sampling:

 

Downsample =
SWITCH(
TRUE(),
SUM(Sensor[Time]) == SUM(Sensor[Time_H]),1,
SUM(Sensor[Time]) == SUM(Sensor[Time_1min]),3
)

 

JrKoh_1-1641449400159.png
per hour
 
JrKoh_3-1641449500205.png

per min

 

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.