I'm building a Canvas app for users to complete weekly safety checks for pieces of equipment. There is a prescribed list of equipment which needs to be checked, which I have as a choice column in SharePoint, and a date column for the date of the check.
What I would like to do is have a dropdown control which shows pieces of equipment which are pending (i.e. there either isn't an entry on the list, or the last date of check for that piece of equipment is over a week), so that users can only select from equipment due to be checked. I've tried the following:
Filter( SafetyCheck, !IsBlank(Equipment) && ( IsBlank(DateChecked) || DateChecked<= Today() - 7 ) ).Equipment
However it does not return any options to the dropdown. I'm new to Power Apps so it's likely I'm missing something, or if there is a better way to do this I'm open to other suggestions!