Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Sorting/Searching & returning data


I've created a spreadsheet to record timecard hours and am now trying t
create another sheet or entire workbook that extracts this information.
I have inserted Sheet1 as an example of how I want this information t
come out and would only want the entries of when the people actuall
worked (i.e. no blank entries).

The problem is that these spreadsheets are used each fortnight and th
information varies as each staff members hours and duties vary so th
formula/code would need to be a lot more dynamic than I am/know ho
to.

I know this could be a major thing but if anyone could help me or a
least point me in the right direction, it would be most appreciated.

Cheer

+-------------------------------------------------------------------
|Filename: Staff Pays.zip
|Download: http://www.excelforum.com/attachment.php?postid=3869
+-------------------------------------------------------------------

--
pog_
-----------------------------------------------------------------------
pog_g's Profile: http://www.excelforum.com/member.php...fo&userid=2768
View this thread: http://www.excelforum.com/showthread.php?threadid=47201

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 17
Default Sorting/Searching & returning data

Hi pog_g,

See this macro code if this helps.

Sub Auto_Open()
' If StartDay is blank, enter this Monday
Dim tday
tday = Now
Worksheets("TimeSheet").Activate
Set startday = Sheets("TimeSheet").Range("StartDay")
If IsEmpty(startday) Then
startday.Value = tday
Do Until Weekday(startday) = 7
startday.Value = startday.Value - 1

Loop
End If

End Sub

Sub Clear()

ActiveSheet.Unprotect
Range("Timedata").ClearContents
ActiveSheet.Protect _

End Sub

Sub NextWeek()
Set startday = Sheets("TimeSheet").Range("StartDay")
startday.Value = startday + 7

Do Until Weekday(startday) = 7
startday.Value = startday.Value - 1

Loop
End Sub

Sub LastWeek()
Set startday = Sheets("TimeSheet").Range("StartDay")
startday.Value = startday - 7

Do Until Weekday(startday) = 7
startday.Value = startday.Value - 1

Loop
End Sub
Sub Clsa()
ActiveSheet.Unprotect
If Range("G15").Interior.Pattern = xlSolid Then
Range("G15:G39").Select
With Selection.Interior
.ColorIndex = 0
.Pattern = xlGray8
.PatternColorIndex = xlAutomatic
End With


ElseIf Range("G15").Interior.Pattern = xlGray8 Then
Range("G15:G39").Select
With Selection.Interior
.ColorIndex = 0
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
End With

End If

ActiveSheet.Protect
Range("B6").Select

End Sub

Sub Clsu()
ActiveSheet.Unprotect
If Range("H15").Interior.Pattern = xlSolid Then
Range("H15:H39").Select
With Selection.Interior
.ColorIndex = 0
.Pattern = xlGray8
.PatternColorIndex = xlAutomatic
End With


ElseIf Range("H15").Interior.Pattern = xlGray8 Then
Range("H15:H39").Select
With Selection.Interior
.ColorIndex = 0
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
End With

End If

ActiveSheet.Protect
Range("B6").Select
End Sub


Sub shade1()
ActiveSheet.Unprotect
If Range("I15").Interior.Pattern = xlSolid Then
Range("I15:I39").Select
With Selection.Interior
.ColorIndex = 0
.Pattern = xlGray8
.PatternColorIndex = xlAutomatic
End With


ElseIf Range("I15").Interior.Pattern = xlGray8 Then
Range("I15:I39").Select
With Selection.Interior
.ColorIndex = 0
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
End With

End If

ActiveSheet.Protect
Range("B6").Select
End Sub

Sub shade2()
ActiveSheet.Unprotect
If Range("J15").Interior.Pattern = xlSolid Then
Range("J15:J39").Select
With Selection.Interior
.ColorIndex = 0
.Pattern = xlGray8
.PatternColorIndex = xlAutomatic
End With


ElseIf Range("J15").Interior.Pattern = xlGray8 Then
Range("J15:J39").Select
With Selection.Interior
.ColorIndex = 0
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
End With

End If

ActiveSheet.Protect
Range("B6").Select
End Sub

Sub shade3()
ActiveSheet.Unprotect
If Range("K15").Interior.Pattern = xlSolid Then
Range("K15:K39").Select
With Selection.Interior
.ColorIndex = 0
.Pattern = xlGray8
.PatternColorIndex = xlAutomatic
End With


ElseIf Range("K15").Interior.Pattern = xlGray8 Then
Range("K15:K39").Select
With Selection.Interior
.ColorIndex = 0
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
End With

End If

ActiveSheet.Protect
Range("B6").Select
End Sub
Sub shade4()
ActiveSheet.Unprotect
If Range("L15").Interior.Pattern = xlSolid Then
Range("L15:L39").Select
With Selection.Interior
.ColorIndex = 0
.Pattern = xlGray8
.PatternColorIndex = xlAutomatic
End With


ElseIf Range("L15").Interior.Pattern = xlGray8 Then
Range("L15:L39").Select
With Selection.Interior
.ColorIndex = 0
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
End With

End If

ActiveSheet.Protect
Range("B6").Select
End Sub
Sub shade5()
ActiveSheet.Unprotect
If Range("M15").Interior.Pattern = xlSolid Then
Range("M15:M39").Select
With Selection.Interior
.ColorIndex = 0
.Pattern = xlGray8
.PatternColorIndex = xlAutomatic
End With


ElseIf Range("M15").Interior.Pattern = xlGray8 Then
Range("M15:M39").Select
With Selection.Interior
.ColorIndex = 0
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
End With

End If

ActiveSheet.Protect
Range("B6").Select
End Sub

Sub newsh()
Dim shtName As String
Dim ref
Dim wSht As Worksheet

Set ref = Sheets("TimeSheet").Range("EndDay")
shtName = Format(ref, "ddmmmyy")
For Each wSht In Worksheets
If wSht.Name = shtName Then
MsgBox "Sorry! This sheet already exists."
Exit Sub
End If
Next wSht
Sheets.Add.Name = shtName
Sheets(shtName).Move Befo=Sheets(Sheets.Count)
Sheets("TimeSheet").Range("A13:N42").Copy Sheets(shtName).Range("A1")
Sheets("TimeSheet").Range("G14:M14").Copy

Sheets(shtName).Select
Range("G2:M2").Select
Selection.PasteSpecial Paste:=xlPasteValues
Cells.Select
Cells.EntireColumn.AutoFit

Selection.Locked = True
Selection.FormulaHidden = False
ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:=True
ActiveSheet.EnableSelection = xlUnlockedCells
Range("A1").Select
End Sub




"pog_g" wrote:


I've created a spreadsheet to record timecard hours and am now trying to
create another sheet or entire workbook that extracts this information.
I have inserted Sheet1 as an example of how I want this information to
come out and would only want the entries of when the people actually
worked (i.e. no blank entries).

The problem is that these spreadsheets are used each fortnight and the
information varies as each staff members hours and duties vary so the
formula/code would need to be a lot more dynamic than I am/know how
to.

I know this could be a major thing but if anyone could help me or at
least point me in the right direction, it would be most appreciated.

Cheers


+-------------------------------------------------------------------+
|Filename: Staff Pays.zip |
|Download: http://www.excelforum.com/attachment.php?postid=3869 |
+-------------------------------------------------------------------+

--
pog_g
------------------------------------------------------------------------
pog_g's Profile: http://www.excelforum.com/member.php...o&userid=27683
View this thread: http://www.excelforum.com/showthread...hreadid=472015


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Searching for 2 values and returning the sum... leekesm Excel Discussion (Misc queries) 2 December 9th 08 03:24 PM
Returning a text by searching the whole workbook Sai Krishna[_2_] Excel Discussion (Misc queries) 2 June 16th 08 06:08 AM
Searching a column and returning a yes or no answer [email protected] Excel Worksheet Functions 1 February 21st 06 08:43 PM
LOOKUP returning value in cell above what I was searching for mwrfsu Excel Discussion (Misc queries) 2 September 10th 05 06:25 PM
Searching and returning row number of a value MikeDH Excel Worksheet Functions 1 August 9th 05 06:06 PM


All times are GMT +1. The time now is 08:36 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"