The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
In Power BI desktop with a Sharepoint list as a data source, some of the data is binary (true/false) and is imported as such. After publishing this file to the service and doing a scheduled refresh, the binary true/false is changed to 0/-1. This means that any filters set to include or exclude either "true" or "false" values are invalidated, as the data now consists of "0" and "-1". Filters that clearly communicate to an end user a "true" or "false" selection are changed to a confusing option of 0 or -1.
I created a workaround by defining a custom column in M as such:
NewColumn = if([BinaryColumn] or [BinaryColumn]=-1) then "True" else "False"
This seems to work, but it also seems like this is an issue that should be corrected.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.