Hello,
I have a report with 2 tables :
Ta --> fields (ANNEE, Fa1, Fa2)
Tb --> fields (ANNEE, Fb1, Fb2)
Link = Ta.ANNEE --> tb.ANNEE Left Outer Join
and this formula for knowing if there is 0 record in table Tb :
If IsNull({Tb.ANNEE}) Then
0
Else
{Tb.ANNEE}
But when there is no record in table Tb, I receive :
'This field name is not known'
How can I know when there is 0 record in table Tb ?
Thank you.
I have a report with 2 tables :
Ta --> fields (ANNEE, Fa1, Fa2)
Tb --> fields (ANNEE, Fb1, Fb2)
Link = Ta.ANNEE --> tb.ANNEE Left Outer Join
and this formula for knowing if there is 0 record in table Tb :
If IsNull({Tb.ANNEE}) Then
0
Else
{Tb.ANNEE}
But when there is no record in table Tb, I receive :
'This field name is not known'
How can I know when there is 0 record in table Tb ?
Thank you.