How do I determine using DAX whether the dates between 2 columns (column A and B) are within dates shown in the created calender with an If statement of yes or no for a calculated column?
Asked
Active
Viewed 1,318 times
1 Answers
0
Can you please try following DAX?
Check =
IF (
AND (
[Date Column A] > MIN ( Sheet2[Date] ),
[Date Column B] < MAX ( Sheet2[Date] )
),
"Yes",
"No"
)
Sample data Table 1 Sample Calendar Table
I hope I was able to answer your questions. Cheers.

ouflak
- 2,458
- 10
- 44
- 49

mandaar mantri
- 1
- 1