Forum Discussion
Drors
Resolver III
8 years agoFunnels in Power BI
Hi All, Im not sure how to display that kind of information in power bi and if powerbi have relevent charts to that kind of information. I have a data of users and 5 actions they can do in an...
v-cherch-msft
Microsoft Employee
8 years agoHi Drors
It seems you may use COUNTROWS Function to get the count of blank date. For example:
Measure =
CALCULATE (
COUNTROWS ( Dataset1 ),
FILTER ( Dataset1, Dataset1[Date] = BLANK () )
)Regards,
Cherie