Forum Discussion
ExceLover
2 years agoFrequent Visitor
SharePoint imported data containing blank cells not treated as blank
Hi, I have a dataset that is a List in SharePoint, and it has has several columns. Some columns have several rows that do not contain data. This dataset was imported into Power BI from SharePoint...
vicky_
Super User
2 years agoIt might be the type of the column - for example, if the type is a string, then blank values are treated as an empty string (""), rather than a null value. So instead of checking for ISBLANK(), you would need to check for [Field] = "".
I think this article might help: https://www.sqlbi.com/articles/blank-handling-in-dax/