i noticed something as well...everytime i try to open the report..i get that message above..then when i hit the lightning bolt the icon at the top I get:
This field name is not known
It takes me to the formula editor where the code is:
if IsNull ({TBLEMPLOYEE.LABORCODE})
then 0
else if {dbo_TBLEMPLOYEE.LABORCODE} <> "CON"
then -3
else if {dbo_TBLEMPLOYEE.LABORCODE} = "CON"
then -2
else 0
Well I fix it and get rid of the dbo_ to
if IsNull ({TBLEMPLOYEE.LABORCODE})
then 0
else if {TBLEMPLOYEE.LABORCODE} <> "CON"
then -3
else if {TBLEMPLOYEE.LABORCODE} = "CON"
then -2
else 0
Then I compile that it says No errors..
Then I save it...the report runs. I save the ENTIRE report. I then close the report and reopen it...and its the same damn problem. On the left side of the container of the Formula Workshop it shows a folder:
Error This field name is not known.
X+1 Group #2 Order
but I dont have a field order or a group #2 order...what the heck is going on ?
Forgot to mention even after I save it and reopen the code CHANGES back to:
if IsNull ({TBLEMPLOYEE.LABORCODE})
then 0
else if {dbo_TBLEMPLOYEE.LABORCODE} <> "CON"
then -3
else if {dbo_TBLEMPLOYEE.LABORCODE} = "CON"
then -2
else 0
...
I dont even have a GROUP called Order that is what is confusing me. Anyone please know what is causing this mess?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.