Hi @Dazzerman
Actually I have a Fact table "Calendar" with the columns Caldate (Datetime data type), WorkingDay (Int), CalYear (Int), CalMonth (Int).
The other table is the view called "Users" with different columns but it has DateStartedCRM (date data type) and DateFinishedCRM (date type).
Here, I'm trying to get the dates that are in between DateStartedCRM (date data type) and DateFinishedCRM (date type) basing on the CalDate which is in the Fact Table "Calendar".
Join condition:
dbo.Fact_Calendar LEFT OUTER JOIN dbo.vw_USERS ON FC.CalDate BETWEEN U.DateStartedCRM AND ISNULL(U.DateFinishedCRM, GETDATE())
How do I actuualy implement this in alteryx to get the same kind of result? Kindly let me know.
Thanks in advance.
Kind Regards,
Sreenivasa Teja.