+ Reply to Thread
Results 1 to 8 of 8

Auto cell population

Hybrid View

  1. #1
    Registered User
    Join Date
    02-19-2018
    Location
    Richards Bay
    MS-Off Ver
    2013
    Posts
    3

    Auto cell population

    Hi, I have 50 customers on drop down and months on another drop down. I need a cell to be populated with unique invoice number for a certain customer for a certain month. I have tried the formula:

    =IF(AND(A1="Cust A";A2="January";"CustA001")).

    I have to do this for all 50 customers for january only. Is there a way I can use arrays maybe?
    Please help.
    Last edited by Mcambi; 02-19-2018 at 10:18 AM.

  2. #2
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,248

    Re: Array Formula

    Attach a sample workbook. Make sure there is just enough data to demonstrate your need. Include a BEFORE sheet and an AFTER sheet in the workbook if needed to show the process you're trying to complete or automate. Make sure your desired results are shown, mock them up manually if necessary.

    Remember to desensitize the data.

    Click on GO ADVANCED and then scroll down to Manage Attachments to open the upload window.
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  3. #3
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2504 (Windows 11 Home 24H2 64-bit)
    Posts
    90,582

    Re: Array Formula

    Welcome to the forum! Please take a moment to re-read forum rule #1 and then amend your thread title to something that better explains your problem. Changing your thread title is not optional, which means you must change it. Thanks!

    • Use concise, accurate thread titles.
    • Your post title should describe your problem, not your anticipated solution.
    • Use terms appropriate to a Google search - poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice tell us nothing.
    • Responding to a request to change your thread title by doing so is mandatory.

    To change a title go to your first post, click EDIT then Go Advanced and change your title.

    No help to be offered, please, until the OP complies with this request.
    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. It's a universal courtesy.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    NB:
    as a Moderator, I never accept friendship requests.
    Forum Rules (updated August 2023): please read them here.

  4. #4
    Registered User
    Join Date
    02-19-2018
    Location
    Richards Bay
    MS-Off Ver
    2013
    Posts
    3

    Re: Array Formula

    TMS,

    I need to select customer name and month from drop down at B3 and B4 respectively and B5 will be populated with correct invoice number.
    I have only done for customer 1 for January and February only.
    I need to do it for 50 customers for different months. Is there a better way?
    Attached Files Attached Files

  5. #5
    Forum Expert
    Join Date
    10-10-2016
    Location
    Sheffield
    MS-Off Ver
    365 and rarely 2016
    Posts
    3,212

    Re: Auto cell population

    I think months might be better as a number but
    =B2&TEXT(MONTH(DATEVALUE("1-"&B3& "99")),"000")

    or to lose the space
    =SUBSTITUTE(B2," ","")&TEXT(MONTH(DATEVALUE("1-"&B3& "99")),"000")

  6. #6
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,248

    Re: Auto cell population

    I wasn't quick enough following up .... davsth beat me to the answer.

    For what it's worth, I also went with
    Formula: copy to clipboard
    =SUBSTITUTE(B2," ","") & TEXT(MONTH(DATEVALUE("1"&B3&" 2018")),"000")


    The year can be anything you like, from 1900 on. In fact, you can just put 0, thus:
    Formula: copy to clipboard
    =SUBSTITUTE(B2," ","") & TEXT(MONTH(DATEVALUE("1"&B3&" 0")),"000")


    You're just trying to built something that the DATEVALUE function will interpret as a date so that you can then use MONTH to extract the month and thus convert it to a number. You then use the TEXT function to format the month number as 3 digits. That said, it seems a little pointless having three digits if the Invoice number is based on the month.

  7. #7
    Registered User
    Join Date
    02-19-2018
    Location
    Richards Bay
    MS-Off Ver
    2013
    Posts
    3

    Re: Auto cell population

    davsth & TMS

    You guys are amazing! Worked like a charm.

    Thank you so much

  8. #8
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,248

    Re: Auto cell population

    You're welcome.

+ 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. Array Frequency formula - data array increase by 1
    By mikyi_ro in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 05-29-2017, 03:59 PM
  2. Replies: 3
    Last Post: 04-02-2016, 08:16 PM
  3. Can I make the row lookup array/range part in an array formula variable?
    By OLLY-7 in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 07-18-2014, 09:06 AM
  4. Array formula + Array formula with criteria that lookups a Table
    By anrichards22 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 09-16-2013, 11:41 AM
  5. Replace hard coded array in formula with link to input array
    By David Brown in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 01-08-2011, 07:45 AM
  6. Converting 3x10 array to a 1X30 array to run a Match formula
    By NBVC in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 04-08-2009, 07:45 AM
  7. [SOLVED] Tricky array formula issue - Using array formula on one cell, then autofilling down a range
    By aspenbordr in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 07-27-2005, 11:05 AM

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