Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 132
Default Tracking Historic Data

Hi

I have a spreadsheet which is updated once a month by several other users,
on this spreadsheet i have a summary page which returns me the total number
of staff that need training. What I am looking to do is find a way that excel
will automatically store what the number of staff that need training is at
the beginning of every month. For example I am looking to have a table with
January - December with a numerical value next to each.

I know this seems like a simple fix by just copying and pasting once a month
but ideally i would excel to do it. Is this possible

Thanks in advance for your help
--
Thanks

Ruth
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 34
Default Tracking Historic Data

On May 5, 9:09*am, Ruth wrote:
Hi

I have a spreadsheet which is updated once a month by several other users,
on this spreadsheet i have a summary page which returns me the total number
of staff that need training. What I am looking to do is find a way that excel
will automatically store what the number of staff that need training is at
the beginning of every month. For example I am looking to have a table with
January - December with a numerical value next to each.

I know this seems like a simple fix by just copying and pasting once a month
but ideally i would excel to do it. Is this possible

Thanks in advance for your help
--
Thanks

Ruth


How is the data entered? What fields are stored with respect to the
time period?
  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 132
Default Tracking Historic Data

I have sent the document over to you now Don hopefully it all makes sense let
me know if you need anything else

I really appreciate any help you can give
--
Thanks

Ruth


"Don Guillett" wrote:

If desired, send your file to my address below. I will only look if:
1. You send a copy of this message on an inserted sheet
2. You give me the newsgroup and the subject line
3. You send a clear explanation of what you want
4. You send before/after examples and expected results.


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Ruth" wrote in message
...
Hi

I have a spreadsheet which is updated once a month by several other users,
on this spreadsheet i have a summary page which returns me the total
number
of staff that need training. What I am looking to do is find a way that
excel
will automatically store what the number of staff that need training is at
the beginning of every month. For example I am looking to have a table
with
January - December with a numerical value next to each.

I know this seems like a simple fix by just copying and pasting once a
month
but ideally i would excel to do it. Is this possible

Thanks in advance for your help
--
Thanks

Ruth


.

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,522
Default Tracking Historic Data

copies formulas down one row and converts last month to values.

Sub SAS_ConvertFormulasToValues()
mtc = Range("c3").End(xlDown).Offset(, -1)
'MsgBox mtc
With Worksheets(2).Range("b1:b60")
Set c = .Find(What:=mtc, LookIn:=xlValues, LookAt:=xlWhole, _
SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False)

If Not c Is Nothing Then
firstAddress = c.Address
Do

'MsgBox c.Row
If LCase(mtc) = "december" Then Exit Sub
..Cells(c.Row, 2).Resize(, 5).Copy .Cells(c.Row + 1, 2)
..Cells(c.Row, 2).Resize(, 5).Value = _
..Cells(c.Row, 2).Resize(, 5).Value
Set c = .FindNext(c)
Loop While Not c Is Nothing And c.Address < firstAddress
End If
End With
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Ruth" wrote in message
...
I have sent the document over to you now Don hopefully it all makes sense
let
me know if you need anything else

I really appreciate any help you can give
--
Thanks

Ruth


"Don Guillett" wrote:

If desired, send your file to my address below. I will only look
if:
1. You send a copy of this message on an inserted sheet
2. You give me the newsgroup and the subject line
3. You send a clear explanation of what you want
4. You send before/after examples and expected results.


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Ruth" wrote in message
...
Hi

I have a spreadsheet which is updated once a month by several other
users,
on this spreadsheet i have a summary page which returns me the total
number
of staff that need training. What I am looking to do is find a way that
excel
will automatically store what the number of staff that need training is
at
the beginning of every month. For example I am looking to have a table
with
January - December with a numerical value next to each.

I know this seems like a simple fix by just copying and pasting once a
month
but ideally i would excel to do it. Is this possible

Thanks in advance for your help
--
Thanks

Ruth


.


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
Tracking data Pat Rice Excel Discussion (Misc queries) 5 October 24th 08 06:06 PM
Tracking Data LV Excel Discussion (Misc queries) 4 September 10th 08 01:15 AM
Entering historic dates Terry Bennett Excel Worksheet Functions 6 June 29th 06 05:46 PM
How to insert tracking numbers into my webpage for RMA tracking wiglady Excel Discussion (Misc queries) 0 April 4th 06 12:44 PM
Tracking data Greenback Excel Discussion (Misc queries) 3 March 6th 06 03:05 PM


All times are GMT +1. The time now is 02:20 PM.

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

About Us

"It's about Microsoft Excel"