Free Trial

Alteryx Designer Desktop Discussions

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

Formula Help Required

vishwa1979
7 - Meteor

Dear Team,

 

I have a sample data.

In that I want to check whether Issuance Date is between Period Between.

I tried using text to column but not getting requirement result.

Please help

3 REPLIES 3
Felipe_Ribeir0
16 - Nebula

Hi @vishwa1979 

 

Check the attached workflow

between.png

 

Jonathan-Sherman
15 - Aurora
15 - Aurora

If you wanted you could even do it just in the one tool! (love a one tool solution 😎)

 

 

Screenshot 2023-08-17 152618.png

DataNath
17 - Castor
17 - Castor

One of the new features for 2023.1 was the Between() function so you could even use that with some regular string functions as well if you're using that!

 

IIF(Between(DateTimeParse([Issuance Date],'%d-%b-%Y'), DateTimeParse(Left([Period Between], 10),'%d.%m.%Y'), DateTimeParse(Right([Period Between], 10),'%d.%m.%Y')),'Between','Not between')

 

Labels
Top Solution Authors