Hello,
In the select expert, I have the following:
{benefit.tax_year} = (left(cstr(year({?enddate})),1) + mid(cstr(year({?enddate})),3,3))
or
isnull({BENEFIT.TAX_YEAR})
{benefit.tax_year} is a string value
When running the report, I am using the {?enddate} of 9/30/2004, so the report is only pulling the 2004({BENEFIT.TAX_YEAR}). If I reverse it to:
isnull({BENEFIT.TAX_YEAR})
or
{benefit.tax_year} = (left(cstr(year({?enddate})),1) + mid(cstr(year({?enddate})),3,3))
It only pulls the null values and I need to it to pull both.
Any suggestions?
In the select expert, I have the following:
{benefit.tax_year} = (left(cstr(year({?enddate})),1) + mid(cstr(year({?enddate})),3,3))
or
isnull({BENEFIT.TAX_YEAR})
{benefit.tax_year} is a string value
When running the report, I am using the {?enddate} of 9/30/2004, so the report is only pulling the 2004({BENEFIT.TAX_YEAR}). If I reverse it to:
isnull({BENEFIT.TAX_YEAR})
or
{benefit.tax_year} = (left(cstr(year({?enddate})),1) + mid(cstr(year({?enddate})),3,3))
It only pulls the null values and I need to it to pull both.
Any suggestions?