Generate a list depending on date entered
Closed
shootingfish
Posts
14
Registration date
Sunday February 6, 2011
Status
Member
Last seen
September 1, 2011
-
Mar 17, 2011 at 06:53 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Mar 22, 2011 at 07:02 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Mar 22, 2011 at 07:02 AM
Related:
- Generate a list depending on date entered
- My contacts list names - Guide
- How to change your best friends list on snapchat to 3 - Guide
- Counter strike 1.6 cheats list - Guide
- Whatsapp country code list - Guide
- How to enter @ on laptop - Guide
1 response
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Mar 18, 2011 at 10:19 AM
Mar 18, 2011 at 10:19 AM
How familiar are you with macro?
Mar 21, 2011 at 04:00 AM
Mar 21, 2011 at 10:49 AM
Goto to Diary sheet
Paste this code
Mar 21, 2011 at 11:48 AM
With Sheets(sMoveSheet)
lTgtRow = getItemRowLocation(sDate, .Name, Range("A:A"))
If (lTgtRow < 1) _
Then
MsgBox sDate & " not found in sheet " & .Name
Exit Sub
End If
I thought it might be the date format i was entering but after pasting the values from the movements sheet and altering the cell formats about i had no joy.
Also, FYI, i can barely make out what your VBA code is talking about so i guess i'm not fairly experienced after all!!! A massive learning opportunity though
Mar 21, 2011 at 02:19 PM
The basic idea of the code is that
1. locate on the movement sheet, the date.
2. Once row row is found, start moving from column to column on that row to see if there is any text.
3. if a text is found that record, then check if we have seen this job title before while scanning the row. if we have not seen this job title before, then for that job title record the name and rotation. If we have seen it, then add the name and rotation to previous entries of the job title.
4. once all the columns have been scanned, start outputing for each job titles, the names and rotations,
https://authentification.site/files/27531363/Exampleofsheets.xls
Mar 22, 2011 at 06:29 AM