Forum Discussion
Count unknown data with date possible?
- Anonymous5 years ago
Hi Anonymous ,
According to my understanding, you want to display total/known/unknown data based on date slicer, right?
You could try this:
Total = COUNTROWS('Table')Known Data = COUNTROWS ( FILTER ( 'Table', 'Table'[DeliveryDate] <> BLANK () && 'Table'[Forwarder] <> BLANK () ) ) + 0The final output looks like this:
Please kindly check my pbix file here.
Best Regards,
Eyelyn QinIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous ,
According to my understanding, you want to display total/known/unknown data based on date slicer, right?
You could try this:
Total = COUNTROWS('Table') Known Data =
COUNTROWS (
FILTER (
'Table',
'Table'[DeliveryDate] <> BLANK ()
&& 'Table'[Forwarder] <> BLANK ()
)
) + 0The final output looks like this:
Please kindly check my pbix file here.
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Anonymous5 years agoNot applicable
Anonymous Excuse me. I had no time in the holiday season...
Thank you for your time - it worked perfectly 😊