I have a yes/no column in SP. All I want to do is show the "yes" items in a dropdown. Simple, yes? Well... you would think. No combination of statements yeilds a proper result.
First attempt:
1. The logical option: Filter(PDM_PDF_Post,Repost=true)
Result: I get only "no" items. No "yes", nor blank. No statement errors.
2. The sanity check: Filter(PDM_PDF_Post,Repost=false)
Result: I get only "no" items. No "yes", nor blank. No statement errors. (Same as #1... ???)
2. The secondary option: Filter(PDM_PDF_Post,Repost=1)
Result: Correct Items, but a type mismatch. Warning that it cant evaluate my formula. Despite the correct results, its against my sensibilities to leave it. (left Boolean, right Number)
Other combinations of type conversions to not work. Since there is no boolean convertion statement, that is not an option. How to resolve this?