Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello got an Nprinting report in which I'm cycling by 2 fields
field1 and field2
field1 is never null while field2 could be null for some records
the thing is that the report is not generated for field1 and field2 when field2 is null
is there something I can do so that the report is generated for field2 even if it is null
currently the name of the report is TimesToValidate_name_of_project_manager_name_of_project_follower
so if field2 is null (which is the project follower) then let the output be named TimesToValidate_name_of_project_manager_
kindly advise
Hi,
You could create a new field12 by concatenating field1 and field2 in the reload script and run the cycle by field12.
In the concatenation formula you can manage the string when field2 is null to have the correct name of the generated report. For example you will have field1value_field2value when field2 is not null and field1value when field2 is null.
Best Regards,
Ruggero
Hi,
You could create a new field12 by concatenating field1 and field2 in the reload script and run the cycle by field12.
In the concatenation formula you can manage the string when field2 is null to have the correct name of the generated report. For example you will have field1value_field2value when field2 is not null and field1value when field2 is null.
Best Regards,
Ruggero
Further to Ruggero's point. Here is a concatenation example: