Hello!
I'm trying to bend Excel to my will but it refuses. Here's an example of my data set:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Date[/TD]
[TD]Name[/TD]
[/TR]
[TR]
[TD]1/4/18
[/TD]
[TD]Mary[/TD]
[/TR]
[TR]
[TD]1/4/18[/TD]
[TD]Mary[/TD]
[/TR]
[TR]
[TD]1/4/18[/TD]
[TD]Mary[/TD]
[/TR]
[TR]
[TD]1/5/18[/TD]
[TD]Fred[/TD]
[/TR]
[TR]
[TD]1/6/18[/TD]
[TD]Mary[/TD]
[/TR]
[TR]
[TD]1/6/18[/TD]
[TD]Mary[/TD]
[/TR]
[TR]
[TD]1/7/18[/TD]
[TD]Fred[/TD]
[/TR]
</tbody>[/TABLE]
Each date is a day someone worked. Each name is the name of the person that worked that day. I want to generate a list that shows all the people that worked (listed once) along with the percentage of days they worked. For example, output based on the list above would be:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Mary[/TD]
[TD]50%[/TD]
[/TR]
[TR]
[TD]Fred[/TD]
[TD]50%[/TD]
[/TR]
</tbody>[/TABLE]
There were four days total in the raw data. Even though Mary is listed five times in the raw data she worked 50% of the days. Fred is only listed twice in the raw data but he worked the other 50% of days. I assume I'd need an array formula but I'm stuck on how to approach it. Any help is appreciated!!
I'm trying to bend Excel to my will but it refuses. Here's an example of my data set:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Date[/TD]
[TD]Name[/TD]
[/TR]
[TR]
[TD]1/4/18
[/TD]
[TD]Mary[/TD]
[/TR]
[TR]
[TD]1/4/18[/TD]
[TD]Mary[/TD]
[/TR]
[TR]
[TD]1/4/18[/TD]
[TD]Mary[/TD]
[/TR]
[TR]
[TD]1/5/18[/TD]
[TD]Fred[/TD]
[/TR]
[TR]
[TD]1/6/18[/TD]
[TD]Mary[/TD]
[/TR]
[TR]
[TD]1/6/18[/TD]
[TD]Mary[/TD]
[/TR]
[TR]
[TD]1/7/18[/TD]
[TD]Fred[/TD]
[/TR]
</tbody>[/TABLE]
Each date is a day someone worked. Each name is the name of the person that worked that day. I want to generate a list that shows all the people that worked (listed once) along with the percentage of days they worked. For example, output based on the list above would be:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Mary[/TD]
[TD]50%[/TD]
[/TR]
[TR]
[TD]Fred[/TD]
[TD]50%[/TD]
[/TR]
</tbody>[/TABLE]
There were four days total in the raw data. Even though Mary is listed five times in the raw data she worked 50% of the days. Fred is only listed twice in the raw data but he worked the other 50% of days. I assume I'd need an array formula but I'm stuck on how to approach it. Any help is appreciated!!