I have a WHERE condition in a read data action that is currently
IFKbm.518year = {date.site:Y}
Is it possible to make it so the WHERE condition returns the year of the current date + 2 months?
Better use a PHP action and return the value then use {var:php-action-name}:
return date('Y', strtotime('+2 months'));
