SOLVED
Extract rows of information based on two dates
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
sriniprad08
11 - Bolide
‎03-07-2024
04:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi Team,
Hope you are well.
I need help. I have two date field and i need to extract the data between these two dates
1) Date period - 2023-01-01 to 2024-01-02
Criteria ([START DATE] BETWEEN "2023-01-01" and "2024-01-02" ) AND ([END DATE] BETWEEN "2023-01-01" and "2024-01-02" )
Please let me know how to go about it,
Thanks
Sr
Solved! Go to Solution.
Labels:
1 REPLY 1
16 - Nebula
‎03-07-2024
04:48 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
If your fields are data type Date, try
[Start Date] >= "2023-01-01" AND
[Start Date] <= "2024-01-02" AND
[End Date] >= "2023-01-01" AND
[End Date] <= "2024-01-02"
You have to write out all of the >= and <= because Alteryx doesn't have a BETWEEN operator.
Chris
