Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

The DAX measure to display line items that contain empty values is:

= CALCULATE(COUNTBLANK(Table1[Column1]))

This will count all the blank values in "Column1" of "Table1". You can replace "Table1[Column1]" with the name of the table and column that contains the data you want to count.