jlsmithhartfiel
Programmer
Hi!
I've searched for this, and have found a few issues that relate, but still not able to resolve this.
I have 3 tables: problems, project_phases and phases.
problems--> project_phases (left outer join)
project_phases --> phases (left outer join)
This shows me all the records I want...until I add phases.name to the report.
I created a formula:
if isnull({problems.proj_phase_id}) then "no phase" else "phase"
This correctly shows me no phase or phase, however, if instead of "phase" I try to show {phases.phase_name}, my recordset goes down to only those that have a problems.proj_phase_id filled in.
What am I missing?
Thanks in advance, Jessica
I've searched for this, and have found a few issues that relate, but still not able to resolve this.
I have 3 tables: problems, project_phases and phases.
problems--> project_phases (left outer join)
project_phases --> phases (left outer join)
This shows me all the records I want...until I add phases.name to the report.
I created a formula:
if isnull({problems.proj_phase_id}) then "no phase" else "phase"
This correctly shows me no phase or phase, however, if instead of "phase" I try to show {phases.phase_name}, my recordset goes down to only those that have a problems.proj_phase_id filled in.
What am I missing?
Thanks in advance, Jessica