My formula
if {EMP_TRANS.TRANS_DATE} >= {PA_EMP_OVH.START_DATE} and {EMP_TRANS.TRANS_DATE} <= {PA_EMP_OVH.END_DATE}
then {PA_EMP_OVH.OVH_PRCNT}
else {EMPLOYEE.EMP_OVERHEAD_PCT}
My formula takes the Transaction date and compares it to a history table to look for changes in overhead, if the overhead is between that range it uses it, but if not it shows the currnt overhead rate
Now the problem not everyone has a listing in the history table, but they do have a listing in the current overhead table. My report only shows records of people who have a listing in the history table and no one else.
Is there a workaround to this?
if {EMP_TRANS.TRANS_DATE} >= {PA_EMP_OVH.START_DATE} and {EMP_TRANS.TRANS_DATE} <= {PA_EMP_OVH.END_DATE}
then {PA_EMP_OVH.OVH_PRCNT}
else {EMPLOYEE.EMP_OVERHEAD_PCT}
My formula takes the Transaction date and compares it to a history table to look for changes in overhead, if the overhead is between that range it uses it, but if not it shows the currnt overhead rate
Now the problem not everyone has a listing in the history table, but they do have a listing in the current overhead table. My report only shows records of people who have a listing in the history table and no one else.
Is there a workaround to this?