Creating a Task Completion Summary sheet using formulas from a copy/paste dump

mradrenaline

New Member
Joined
Nov 9, 2017
Messages
1
ABCDEFGHI
1Monday
Tuesday
Wednesday
Thursday
-
Completed
Goal
Percent
2Leader110
0-44100%
3Boss1100
0-
1425%
4Boss2000
0-040%
5
Sheet 1

<tbody>
</tbody>


ABCDEFG
1N/A
N/A
Submit Date
N/A
N/A
N/AOwner
2N/AN/A6-Nov-17N/AN/AN/ALeader
3N/AN/A6-Nov-17N/AN/AN/ALeader
4N/AN/A6-Nov-17N/AN/AN/ALeader
5N/AN/A6-Nov-17N/AN/AN/ABoss1
6N/AN/A7-Nov-17N/AN/AN/ALeader
Sheet 2

<tbody>
</tbody>



Sheet 2 is how information populates if I copy/paste it into excel from the internet. Sheet 1 is the desired format for the Task Completion Summary sheet. I need the formulas to get this information from the copy/paste format into sheet 1 with the shown format. I'm able to set up the conditional formatting, but I don't know how to get excel to recognize the day of the week from the date shown in sheet 2 and auto-count it for each person into sheet 1 based on the day of the week. I need the information from sheet 2 to be translated to the summary report from sheet 1 using formulas. Any help is much appreciated.
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
I think this can be accomplished like this

Excel 2012
ABCDEFGHIJ
1MondayTuesdayWednesdayThursdayFriday-CompletedGoalPercent
2Leader31000-44100%
3Boss110000-1425%
4Boss200000-040%

<tbody>
</tbody>
Hoja3

Worksheet Formulas
CellFormula
B2=COUNTIFS(Hoja4!$D$2:$D$6,COLUMN(),Hoja4!$H$2:$H$6,Hoja3!$A$2)
C2=COUNTIFS(Hoja4!$D$2:$D$6,COLUMN(),Hoja4!$H$2:$H$6,Hoja3!$A$2)
D2=COUNTIFS(Hoja4!$D$2:$D$6,COLUMN(),Hoja4!$H$2:$H$6,Hoja3!$A$2)
E2=COUNTIFS(Hoja4!$D$2:$D$6,COLUMN(),Hoja4!$H$2:$H$6,Hoja3!$A$2)
F2=COUNTIFS(Hoja4!$D$2:$D$6,COLUMN(),Hoja4!$H$2:$H$6,Hoja3!$A$2)
B3=COUNTIFS(Hoja4!$D$2:$D$6,COLUMN(),Hoja4!$H$2:$H$6,Hoja3!$A$3)
C3=COUNTIFS(Hoja4!$D$2:$D$6,COLUMN(),Hoja4!$H$2:$H$6,Hoja3!$A$3)
D3=COUNTIFS(Hoja4!$D$2:$D$6,COLUMN(),Hoja4!$H$2:$H$6,Hoja3!$A$3)
E3=COUNTIFS(Hoja4!$D$2:$D$6,COLUMN(),Hoja4!$H$2:$H$6,Hoja3!$A$3)
F3=COUNTIFS(Hoja4!$D$2:$D$6,COLUMN(),Hoja4!$H$2:$H$6,Hoja3!$A$3)
B4=COUNTIFS(Hoja4!$D$2:$D$6,COLUMN(),Hoja4!$H$2:$H$6,Hoja3!$A$4)
C4=COUNTIFS(Hoja4!$D$2:$D$6,COLUMN(),Hoja4!$H$2:$H$6,Hoja3!$A$4)
D4=COUNTIFS(Hoja4!$D$2:$D$6,COLUMN(),Hoja4!$H$2:$H$6,Hoja3!$A$4)
E4=COUNTIFS(Hoja4!$D$2:$D$6,COLUMN(),Hoja4!$H$2:$H$6,Hoja3!$A$4)
F4=COUNTIFS(Hoja4!$D$2:$D$6,COLUMN(),Hoja4!$H$2:$H$6,Hoja3!$A$4)
H2=SUM(B2:F2)
J2=H2/I2
J3=H3/I3
J4=H4/I4

<tbody>
</tbody>

<tbody>
</tbody>



As you can see I added a helper column in the data and used a formula to get a value for the day in the date


Excel 2012
ABCDEFGH
1N/AN/ASubmit DateN/AN/AN/AOwner
2N/AN/A6-Nov-172N/AN/AN/ALeader
3N/AN/A6-Nov-172N/AN/AN/ALeader
4N/AN/A6-Nov-172N/AN/AN/ALeader
5N/AN/A6-Nov-172N/AN/AN/ABoss1
6N/AN/A7-Nov-173N/AN/AN/ALeader

<tbody>
</tbody>
Hoja4

Worksheet Formulas
CellFormula
D2=WEEKDAY(C2)
D3=WEEKDAY(C3)
D4=WEEKDAY(C4)
D5=WEEKDAY(C5)
D6=WEEKDAY(C6)

<tbody>
</tbody>

<tbody>
</tbody>


Sunday = 1
Monday = 2
Tuesday = 3

and so on
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,988
Messages
6,128,145
Members
449,426
Latest member
revK

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top