+ Reply to Thread
Results 1 to 14 of 14

Look for blanks & return the person's name on a sheet

  1. #1
    Forum Contributor
    Join Date
    02-12-2018
    Location
    Clearwater, FL
    MS-Off Ver
    MS 365
    Posts
    214

    Look for blanks & return the person's name on a sheet

    I have a worksheet called "Esclation Rotation" where it has my associates names & the date they covered the esclation line. On sheet "control" i have in cell "I12" the person who supposed to be next in rotation. Basically I need it to look and pull the next 3 people with a blank beside their names. Then if they covered the esclation line, when they click on the checkbox next to their name on "control" that it was completed, I would like for it to put the date which is in cell "C3" into the cell that was found blank. Any help would be greatly appricated. I have uploaded an example book for your referenece.
    Attached Files Attached Files

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,460

    Re: Look for blanks & return the person's name on a sheet

    Please upload the workbook in .xlsx format.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  3. #3
    Forum Contributor
    Join Date
    02-12-2018
    Location
    Clearwater, FL
    MS-Off Ver
    MS 365
    Posts
    214

    Post Re: Look for blanks & return the person's name on a sheet

    Here is a sample file of what I have available. Please assist!
    Attached Files Attached Files

  4. #4
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,460

    Re: Look for blanks & return the person's name on a sheet

    Thanks - I'll have a look and assist if I can. Please be patient!!!

  5. #5
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,460

    Re: Look for blanks & return the person's name on a sheet

    OK - this looks like a VBA query - shall I move the thread for you to the correct section?

  6. #6
    Forum Contributor
    Join Date
    02-12-2018
    Location
    Clearwater, FL
    MS-Off Ver
    MS 365
    Posts
    214

    Re: Look for blanks & return the person's name on a sheet

    Please do - didn't know if it would be VBA of if there was a formula that could be used.

  7. #7
    Forum Expert 63falcondude's Avatar
    Join Date
    08-22-2016
    Location
    USA
    MS-Off Ver
    365
    Posts
    6,266

    Re: Look for blanks & return the person's name on a sheet

    This is a 2-part question. Part 2 will have to be solved through VBA.

    Part 1, filling in the names, might be achievable through the use of formulas but you will have to un-merge the cells in I12:L14.
    You can always use "Center Across Selection" to mimic the look of merge and center.

    Based on the sample that you shared in post #3, what names should go into I12:L12?

    As you can see, 2 out of the next 3 blank cells have a duplicate name (PAUL TOTH).
    Should this name be repeated or should we pull the next unique name with a blank cell next to it?

  8. #8
    Forum Contributor
    Join Date
    02-12-2018
    Location
    Clearwater, FL
    MS-Off Ver
    MS 365
    Posts
    214

    Re: Look for blanks & return the person's name on a sheet

    Great, it would be the next unique name with a blank beside it.

  9. #9
    Forum Expert 63falcondude's Avatar
    Join Date
    08-22-2016
    Location
    USA
    MS-Off Ver
    365
    Posts
    6,266

    Re: Look for blanks & return the person's name on a sheet

    I can help with Part 1.

    After un-merging the cells in I12:L12, try this in I12:

    =INDEX('Escalation Rotation'!A$2:A$204,MATCH(0,COUNTIF(I$11:I11,'Escalation Rotation'!A$2:A$204)+('Escalation Rotation'!B$2:B$204<>""),0)) Ctrl Shift Enter

    Drag this formula through I14 and then fix the formatting accordingly.

  10. #10
    Forum Contributor
    Join Date
    02-12-2018
    Location
    Clearwater, FL
    MS-Off Ver
    MS 365
    Posts
    214

    Re: Look for blanks & return the person's name on a sheet

    What if I wanted it to count Paul again so my results would be Paul Toth, Brianna Bivens & then Paul Toth again?

  11. #11
    Forum Expert 63falcondude's Avatar
    Join Date
    08-22-2016
    Location
    USA
    MS-Off Ver
    365
    Posts
    6,266

    Re: Look for blanks & return the person's name on a sheet

    That (post #10) would look like this:

    I12 =INDEX('Escalation Rotation'!A$2:A$204,SMALL(IF('Escalation Rotation'!B$2:B$204="",ROW('Escalation Rotation'!B$2:B$204)-ROW('Escalation Rotation'!B$2)+1),ROWS($1:1))) Ctrl Shift Enter

    Same thing, drag the formula down and then adjust the formatting.

  12. #12
    Forum Contributor
    Join Date
    02-12-2018
    Location
    Clearwater, FL
    MS-Off Ver
    MS 365
    Posts
    214

    Re: Look for blanks & return the person's name on a sheet

    Great that works flawlessly - now just need the completed checkbox, if it is checked for it to put the date in for that person from the C3 cell on control - any suggestions or assistance would be greatly appricated!

  13. #13
    Forum Contributor
    Join Date
    02-12-2018
    Location
    Clearwater, FL
    MS-Off Ver
    MS 365
    Posts
    214

    Re: Look for blanks & return the person's name on a sheet

    What if I put a completed? the line in Colum M12 - so the associate could put the date completed and on cell change it would copy that date over to "Escalation Rotation" beside that associate?

  14. #14
    Forum Expert 63falcondude's Avatar
    Join Date
    08-22-2016
    Location
    USA
    MS-Off Ver
    365
    Posts
    6,266

    Re: Look for blanks & return the person's name on a sheet

    Thanks for the rep!

    Since this is a 2-part question, I think that it would be appropriate to create a new thread in the VBA section where you can ask about part 2 (check-box automation).

    Include what you have so far with the formulas in place. You can provide a link to this thread if you think that will help future contributors.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Run calculations in template for 1 person, copy-paste results, repeat for next person
    By Geoff. in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 11-25-2014, 06:02 PM
  2. VBA to convert person-to-event into person-person
    By LuckyStrike in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-07-2014, 02:34 PM
  3. [SOLVED] Person Matching between two data sets - need to return ID # from one and match to other
    By Scomith in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 03-15-2013, 10:31 AM
  4. [SOLVED] Enter a name to Create a new sheet with a template and sheet name is the person's name
    By Kram222 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 11-11-2012, 09:55 PM
  5. Replies: 0
    Last Post: 08-08-2012, 11:08 AM
  6. Replies: 1
    Last Post: 09-03-2009, 07:51 AM
  7. Replies: 3
    Last Post: 02-27-2007, 05:27 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1