Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
HI
i have a table with column "date from" and column "date to"
and anothe table with all dates isung it as a filter
i want to creat a measure which will give me "true" or "false" if the date in the filter is in the range of the "datefrom" -"dateto"
examp - date from = 1/1/2020 date to 9/1/2020 , if i click the filter 10/1/2020 i'll get "false" and if the filter say 2/1/2020 it will be "treu"
thank you!!
Solved! Go to Solution.
@oren
You can create the following measure by checking the attached pbix if necessary.
@oren
You can create the following measure by checking the attached pbix if necessary.
@oren , Try measure like
measure =
if(isblank(max(Date[Date])),0,1)
or
measure =
var _min =minx(allselected(date),date[date])
var _max =maxx(allselected(date),date[date])
return
if(isblank(calculate(countrow(Table), filter(Table, Table[Date] <=_max && Table[Date] >=_min))),0,1)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 66 | |
| 45 | |
| 41 | |
| 29 | |
| 19 |
| User | Count |
|---|---|
| 201 | |
| 126 | |
| 103 | |
| 70 | |
| 53 |