Forum Discussion
AMS_Pag
6 years agoFrequent Visitor
Filter rows based on dates comparison
Hi, I have a table containing the vehicles that I currently have in my stock. The vehicles theirselves have a STOCK_START_DATE (which is the date they entered my stock in) and a STOCK_END_DATE (whic...
- Anonymous6 years ago
Create measure
Measure =
var max_start=calculate(max(table[STOCK_START_DATE]),all(table))
return
if(max(table[STOCK_END_DATE])<max_start,1,-1)
And then add this measure to your visual level filter and set it to 1.
Thanks & regards,
Pravin Wattamwar
www.linkedin.com/in/pravin-p-wattamwar
If I resolve your problem Mark it as a solution and give kudos.
Anonymous
6 years agoNot applicable
There is visualization section.
Select table visual.
Then drag required fields in table visual.
and drag measure to visual level filter.
AMS_Pag
6 years agoFrequent Visitor
Thanks, it works!