Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Alteryx Designer Desktop Discussions

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

Greater than *Date* Formula

JL-ALTERYX
6 - Meteoroid

Hello,

 

Is there a way to design this workflow to not rely on updating the formulas "2025-01-01" and "2025-04-01" every quarter?

Any help would be greatly appreciated. Thank you!

2 REPLIES 2
KGT
13 - Pulsar

A couple of options.

 

Set the start and end dates as Workflow Constants, and then reference those in the formulas as [User.StartDate] etc.

 

Have a lookup table that lists the quarter, and the start/end. Join that on and use those fields.

 

Dynamically work out the dates for the current quarter, would involve the following in some combination:

Todays date: DateTimeToday()

First Month of Quarter: Floor(ToNumber((DateTimeFormat([Today],'%m')/3))+1

First day of that month: DateTimeFirstOfMonth() or DateTimeLastOfMonth()

JL-ALTERYX
6 - Meteoroid

Thank you so much, this gave me some ideas on how to proceed!

Labels
Top Solution Authors