Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Filter data in specific timeranges

Kk_larsen
8 - Asteroid

I have data with dates in this format: 2020-09-21 11:11:17 and I want to filter on dates that is between 2020-09-23 12:06:21 and 2020-09-23 09:07:21 is that possible? 

4 REPLIES 4
jdunkerley79
ACE Emeritus
ACE Emeritus

Yes a filter expression like:

[Time] >= "2020-09-23 12:06:21" AND [Time] <= "2020-09-23 09:07:21"

should do what you need

 

Making the assumpting the dates are in a [Time] column! 

marcusblackhill
12 - Quasar
12 - Quasar

Hey @Kk_larsen !

 

You can append your limits to you database and use a filter testing the data with your limits, that way you can do that filter based in your choice of limits.

 

Look the attached workflow.

 

Hope that help!

marcusmontenegro_0-1606140061296.png

 

atcodedog05
22 - Nova
22 - Nova

Hi @Kk_larsen 

 

Once you have a datetime field

 

if you pull a filter after it and select datetime field it lets you make selection of date range. You can use a easy dropdown to set the limits.

atcodedog05_0-1606140415008.png

Hope this helps 🙂


If this post helps you please mark it as solution. And give a like if you dont mind 😀👍

atcodedog05
22 - Nova
22 - Nova

Happy to help 🙂 @Kk_larsen 

 

Cheers and Happy Analyzing 😀

 

Feel free to reach out if you face any issues 🙂

Labels
Top Solution Authors