Forum Discussion
Anonymous
5 years agoNot applicable
Select data according to certain date
Hi everyone, I would ask for your support and knowledge to help me to solve this topic. I have a set of prices, for few contracts, launched in some dates. I need to filter all the items which its ...
camargos88
Community Champion
5 years agoAnonymous ,
You can create a measure like this:
_Filter =
VAR _date = DATE(SELECTEDVALUE('Table'[Contract_Year]), SELECTEDVALUE('Table'[Contract_Month]), 1)
RETURN IF(_date >= DATE(2020, 10,30), 1, 0)
Use this measure to filter the visual.