Alteryx Designer Desktop Discussions

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

filter - the last 15 days

LETICIAHELENA
8 - Asteroid

hello,

 

how can I filter the last 15 days?

 

Thanks

2 REPLIES 2
Yoshiro_Fujimori
15 - Aurora

@LETICIAHELENA ,

It would be better if you add your input and expected output, but if you have a date column to use for filter,

you may filter with this expression.

[Date] >= DateTimeAdd(DateTimeToday(),-14,"day")

Raj
16 - Nebula

@LETICIAHELENA  you can apply the filter on your date column please make sure you data type is date and in correct format
else there will be some extra tweaking into the formula
Also add some sample data if data is in different format
wll help with updated formula.
[Date] >= DateTimeAdd(DateTimeToday(),-14,"day")

Labels