I've got a report where I'm trying to display the field where there is a checked box and if there isn't I want to print the words "No responsible employee identified"
Each app has several employees working on it but only one is responsible for the entire app. The responsible employee has a checked box next to their name.
For example:
App No#1
1. Riley X (responsible)
2. Smith
3. Bass
App No #2
1. Moss
2. Dunn X (responsible)
App No #3
1. Kelly X (responsible)
App No #4
1. Krate ("No responsible employee identified")
2. Donell
I thought the following formula would display the responsible employee for each app and if there wasn't a responsible employee identified then it would display "No responsible employee identified":
If {TableEmployee_.CHARGE} = '1' then {TableEmployee_name} else "No responsible employee idenified".
Current Results:
App No #1 Riley X (responsible)
"No responsible employee identified"
"No responsible employee identified"
App No #2 "No responsible employee identified"
Dunn X (responsible)
App No #3 Kelly X (responsible)
App No #4 "No responsible employee identified"
"No responsible employee identified"
I only want one result for each app no either the responsible employee is checked or it says "No responsible employee identified":
Desired Results:
App No #1 Riley X (responsible)
App No #2 Dunn X (responsible)
App No #3 Kelly X (responsible)
App No #4 "No responsible employee identified"
Any suggestions would be appreciated.
Thanks
Each app has several employees working on it but only one is responsible for the entire app. The responsible employee has a checked box next to their name.
For example:
App No#1
1. Riley X (responsible)
2. Smith
3. Bass
App No #2
1. Moss
2. Dunn X (responsible)
App No #3
1. Kelly X (responsible)
App No #4
1. Krate ("No responsible employee identified")
2. Donell
I thought the following formula would display the responsible employee for each app and if there wasn't a responsible employee identified then it would display "No responsible employee identified":
If {TableEmployee_.CHARGE} = '1' then {TableEmployee_name} else "No responsible employee idenified".
Current Results:
App No #1 Riley X (responsible)
"No responsible employee identified"
"No responsible employee identified"
App No #2 "No responsible employee identified"
Dunn X (responsible)
App No #3 Kelly X (responsible)
App No #4 "No responsible employee identified"
"No responsible employee identified"
I only want one result for each app no either the responsible employee is checked or it says "No responsible employee identified":
Desired Results:
App No #1 Riley X (responsible)
App No #2 Dunn X (responsible)
App No #3 Kelly X (responsible)
App No #4 "No responsible employee identified"
Any suggestions would be appreciated.
Thanks