PowerBI Differentiate BLANK value and 0 value
问题 Is there a way to differentiate between a blank value in a column and a 0 value in a column, when I tested with an if statement they were treated as the same value... any suggestions? 回答1: Yes, there is. In a calculated column, first test a value for being blank, then test for beign zero: So, create a flag and filter your sum measure by it, i.e, No blanks sum = CALCULATE( SUM(Table[Amount]), Test <> "Blank") 回答2: Not really. You see, the SUM function in DAX sends a SUM function to SQL, and