Hi there,
Just a simple question for filtering a SharePoint list via "Get Items".
The first filter looks for dates that are 7 days in the future - works fine "formatDateTime(addDays(utcNow(), 7), 'yyyy-MM-dd')"
and now I want to add a filter for all entries that are not empty/blank in the "Info" column - they just have to contain something.
Date eq 'formatDateTime(addDays(utcNow(), 7), 'yyyy-MM-dd')' and ne '' - does not work.
Any ideas how to make it work?