Forum Discussion
JSher
5 years agoFrequent Visitor
Filter a table using a DateTime measure
Hello, I am trying to filter a table based on a measure from a DateTime column. My measure is: Measure = SELECTEDVALUE(Table[DateTimeColumn]) (creates a date/time mesure from another table) ...
- Anonymous5 years ago
Hi JSher ,
You could create a measure and add it to visual filter, filter out the visual with measure=1.
Measure = IF(SELECTEDVALUE(SecondTable[ActionDateTime])<SELECTEDVALUE(TimeAction[ActionDateTime]),1,0)Best Regards,
Jay
amitchandak
5 years agoSuper User
JSher , You can not use slicer value while creating a new table, You can use that in a measure
measure = countrows( FILTER(Table2,Table2[DateTimeColumn]<Measure)))
JSher
5 years agoFrequent Visitor
Thanks for your reply.
measure = countrows( FILTER(Table2,Table2[DateTimeColumn]<Measure))) Just give me the number of rows, I wish to display the information in those rows in a table or another format.
Thanks