Why does this calculated column return an empty value, for rows that are equal to zero?
Number of Rows =
VAR ThisIndex = 'Table'[Index]
RETURN
COUNTROWS(
FILTER('OtherTable', 'OtherTable'[col] = ThisIndex)
)
Solved! Go to Solution.
@webportal , for no rows it will return blank, you can add +0 if needed
Number of Rows =
VAR ThisIndex = 'Table'[Index]
RETURN
COUNTROWS(
FILTER('OtherTable', 'OtherTable'[col] = ThisIndex)
) +0
@webportal , for no rows it will return blank, you can add +0 if needed
Number of Rows =
VAR ThisIndex = 'Table'[Index]
RETURN
COUNTROWS(
FILTER('OtherTable', 'OtherTable'[col] = ThisIndex)
) +0
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
119 | |
75 | |
66 | |
51 | |
49 |
User | Count |
---|---|
183 | |
101 | |
80 | |
79 | |
77 |