Forum Discussion

GON76's avatar
GON76
Icon for Helper III rankHelper III
1 year ago
Solved

Counting Blank Fields on a Column that's Counting Values

A little background:   I'm trying to count blank fields for a column which is displaying a count of values, the valued that I'm seeing on the card is (blank).   I'm working in a learning environm...
  • AmiraBedh's avatar
    AmiraBedh
    1 year ago

    You are right ! I forgot the FILTER it should be like below :

    No Enrollments :=
    CALCULATE(
        COUNTROWS(V_SECTIONCUSTOMFIELDS),
        FILTER(
            V_SECTIONCUSTOMFIELDS,
            ISBLANK(
                CALCULATE(COUNTROWS(V_ENROLLMENTS))
            )
        )
    )