Is it possible to create a virtual column based off a query to another table? - something like the following
DateTable
DateDt StatusCd
7/31
8/1 CURRENT
8/2
8/5
8/6
8/7
OtherTable
Column1
Column2
VIRTUALDate = Select DateDt from DateTable where DateTable.StatusCd = 'CURRENT'
I can go more in depth in the example if needed,