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 |
---|---|
125 | |
74 | |
65 | |
53 | |
53 |
User | Count |
---|---|
199 | |
104 | |
88 | |
79 | |
77 |