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.
Anonymous ,
for unknown data use like
unknown new = calculate([unknown], all(Date), isblank(Table[Deilvery Date]))
or
unknown new = calculate([unknown], all(Table), isblank(Table[Deilvery Date]))
or
unknown new = calculate([unknown], filter(all(Table[Date]), isblank(Table[Deilvery Date])))
amitchandak Thanks for the help.
now the number of unknown data is constant but it still does not change with the date slicer. Do you have an idea?
- AllisonKennedy5 years agoCommunity Champion
Anonymous You need to have a date column for reference. What is your data source? Is there a created or modified date we can use? You may need to use the DAX function USERELATIONSHIP() to use an inactive relationship between date table and modified date to know when the unknown data was modified or created??
Hopefully that makes some sense?
Without some date, we can't know which numbers apply to each month.