Answers for "count rows in another table group by id number power bi"

0

count rows in another table group by id number power bi

COUNTIF for Duplicate Dates =
VAR __CurrentRowID = Sales[Date]
RETURN
COUNTROWS(
    FILTER(
        ALL(Sales),
        __CurrentRowID = Sales[Date]
    )
)
Posted by: Guest on October-15-2020

Browse Popular Code Answers by Language