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
Aeden
New Member

Translating time difference postgresql quries into DAX on a single table

Currenlty im running mutlple quries to return data in postgres, and then importing into PowerBI for the graphing, obvisouly many steps can be combined by connecting powerBI into the DB, and using DAX to calculate the coloumns rather seperate PG queries. 

to grab said data:
select *
from postgres

where requesttime is now() - interval '1 hour' 
(gives me everything in the last hour)

To split it further (in Postgresql) im using:

and notifytime < requesttime + interval '10 sec'
(to return things completed in under 10 seconds)

as well as:

and notifytime >= requesttime + interval '10 sec' and notifytime < requesttime + interval '30 sec'
(to find things that completed between 10 and 30 seconds)

What im struggling with is how to create the custom coloumn forumla for this 
notifytime >= requesttime + interval '10 sec' and notifytime < requesttime + interval '30 sec'


2 REPLIES 2
v-xiaotang
Community Support
Community Support

Hi @Aeden 

Thanks for reaching out to us.

probably similar to this,

filter(table, table[requesttime]=NOW()-TIME(1,0,0))

However, the above is not complete, please share some sample data and expected results.

 

 

Best Regards,

Community Support Team _Tang

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

That's something i looked at before however it doesnt compare two different coloumns which is where im struggling.

Result = notifytime is with X seconds of Requesttime
and
Result = notifytime more than X seconds of requesttime and also less than Y seconds of Requesttime

The data is just two coloumns of date/times, but rather than just a duration coloumn, im after multiple coloumns of certain duratons. 
So i can get a count of how many rows per requesttime got completed in a certain amount of time

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.