Forum Discussion
kteigen
3 years agoNew Member
Check if Date is between a Start & End date on Multiple Rows
Hi all, I have a Fact table that has multiple rows each with their own Start & End date. I also have a Date table, and I want to add a column which checks to see if that Date is included in any o...
wdx223_Daniel
3 years agoCommunity Champion
=if Table.Contains(Fact,_,(x,y)=>x[Start Date]<=y[Date] and x[End Date]>=y[Date]) then "Yes" else "No"