Urgent Help - Simple for you, NIGHTMARE for me!

Nec87

Board Regular
Joined
Dec 17, 2007
Messages
174
Hi All,

I am currently trying to produce an effective Time Management spreadsheet which I can use for both weekly but then can also show monthly.

The way I have it setup is as follows:
Sheet 1 - my weekly planner


From this i just have a 5 day week where i can allocate my time.

Sheet 2 - my month overview


On this spreadsheet it will show what I have done over the month.

What I Require:
On Sheet I would like it to automatically update depending on the dates.

So in B12 for example, i want it to look at the date in A12 (12/04/11) and see if on Sheet 1 in Row 3 if the date is showing.
If it is I was Sheet 2 to input the relevant data from the time slots from Sheet 1 into it.

I hope this makes sence, i urgently need this completely by today!

All help is most appreciated!

Many Thanks,

Nec
 
Thanks SuperFerret,

I just hope someone on here will be help me out with a Macro! hehe.

Thanks again!
 
Upvote 0

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Hello again,

Just been researching for a project at work and it clicked maybe this would be of use to you (I'm still learning this stuff so it may be clunky :LOL:)

Code:
Sub TestingMultiIf()
If Sheet1.Range("A2") = Sheet2.Range("B1") Then 'Check if value in A2 is same as Date in B1
Sheet1.Range("B2:D2").Copy                      'Copy if it is
Sheet2.Range("B2").PasteSpecial Transpose:=True 'Paste using Transpose
End If                                          'Go to test next
If Sheet1.Range("A3") = Sheet2.Range("C1") Then
Sheet1.Range("B3:D3").Copy
Sheet2.Range("C2").PasteSpecial Transpose:=True
End If
If Sheet1.Range("A4") = Sheet2.Range("D1") Then
Sheet1.Range("B4:D4").Copy
Sheet2.Range("D2").PasteSpecial Transpose:=True
End If
End Sub

Not tested the situation with if the dates change, but if you had it set up for the month it should just bypass if they don't match (I think) or you could hopefully amend to suit?
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,772
Messages
6,126,806
Members
449,337
Latest member
BBV123

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