Hello,
I am attempting to create a list of employees who finished reports on time. My issue is that my data sources have different interpretations of their name.
I'll give an example.
In Sheet 1:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Employee[/TD]
[TD]% Reports Completed on Time[/TD]
[/TR]
[TR]
[TD]Hubert Humphrey[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Mary Shelley[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Fats Domino[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
In Sheet 2:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Employee[/TD]
[TD]Report completed on time?[/TD]
[/TR]
[TR]
[TD]Humphrey[/TD]
[TD]No[/TD]
[/TR]
[TR]
[TD]Shelley[/TD]
[TD]Yes[/TD]
[/TR]
[TR]
[TD]Humphrey[/TD]
[TD]Yes[/TD]
[/TR]
[TR]
[TD]Domino[/TD]
[TD]No[/TD]
[/TR]
[TR]
[TD]Shelley[/TD]
[TD]No[/TD]
[/TR]
[TR]
[TD]Domino[/TD]
[TD]Yes[/TD]
[/TR]
[TR]
[TD]Domino[/TD]
[TD]Yes[/TD]
[/TR]
</tbody>[/TABLE]
My current formula looks like:
Which is not returning anything.
I know the issue lies in the partial name match.
Any suggestions?
Thanks!
I am attempting to create a list of employees who finished reports on time. My issue is that my data sources have different interpretations of their name.
I'll give an example.
In Sheet 1:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Employee[/TD]
[TD]% Reports Completed on Time[/TD]
[/TR]
[TR]
[TD]Hubert Humphrey[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Mary Shelley[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Fats Domino[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
In Sheet 2:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Employee[/TD]
[TD]Report completed on time?[/TD]
[/TR]
[TR]
[TD]Humphrey[/TD]
[TD]No[/TD]
[/TR]
[TR]
[TD]Shelley[/TD]
[TD]Yes[/TD]
[/TR]
[TR]
[TD]Humphrey[/TD]
[TD]Yes[/TD]
[/TR]
[TR]
[TD]Domino[/TD]
[TD]No[/TD]
[/TR]
[TR]
[TD]Shelley[/TD]
[TD]No[/TD]
[/TR]
[TR]
[TD]Domino[/TD]
[TD]Yes[/TD]
[/TR]
[TR]
[TD]Domino[/TD]
[TD]Yes[/TD]
[/TR]
</tbody>[/TABLE]
My current formula looks like:
Code:
=IF("*"&Sheet2[Employee]&"*"=Sheet1!A2,COUNTIF(Sheet2[Report completed on time?],"yes")/SUM(COUNTIF(Sheet2[Report completed on time?],"yes"),COUNTIF(Sheet2[Report completed on time?],"no")),"")
Which is not returning anything.
I know the issue lies in the partial name match.
Any suggestions?
Thanks!