+ Reply to Thread
Results 1 to 41 of 41

Require a formula to extract 2 dates from a string and place them into 2 separate cells

  1. #1
    Registered User
    Join Date
    06-23-2022
    Location
    Cheshire
    MS-Off Ver
    365 apps for enterprise
    Posts
    34

    Require a formula to extract 2 dates from a string and place them into 2 separate cells

    Hi I am looking for a formula that would take dates from a string and place them in separate cells.

    The type of text I need to extract from take the form of the of the following styles :

    "AND 10 dates between 02/07/2021 - 03/08/2021" - I would need the extract to pull the 2 dates : 02/07/2021 03/08/2021 into 2 separate cells

    "AND 2022/85 02/07/2021 & 03/08/2021" - I would need the extract to pull the 2 dates : 02/07/2021 03/08/2021 into 2 separate cells

    "AND 2021/68 02/07/21 - 03/08/22" - (NB that the full year is not put as 02/07/2021 instead listed as 02/07/21 I would need the extract to pull the 2 dates : 02/07/2021 03/08/2021 into 2 separate cells

    "AND 10 dates from & including 02/07/2021 - 03/08/2021" - I would need the extract to pull the 2 dates : 02/07/2021 03/08/2021 into 2 separate cells


    I think I have covered all of the options that would occur.

    is there a way for the formula to look at the specific of **/**/**** and also **/**/** and extract based on those conditions ?

    Many thanks in advance

  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. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,417

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Administrative Note:

    Members will tailor the solutions they offer to the version (NOT release number) of Office (Excel, NOT Windows) that you have. Please check that your forum profile is up-to-date in this respect. If you aren't sure, in Excel go to File | Account and report what it says below the MS logo at the top of that page. If your version is for Mac, please also state this. Thanks.
    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 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. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,417

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    First date:

    =DATEVALUE(TRIM(RIGHT(SUBSTITUTE(TRIM(RIGHT(SUBSTITUTE(TRIM(SUBSTITUTE(SUBSTITUTE(LEFT(A1,LEN(A1)-11),"-",""),"&",""))," ",REPT(" ",99)),98))," ",REPT(" ",99)),98)))

    Second date:

    =DATEVALUE(TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",99)),98)))

    Format cells as SHORT DATE.
    Attached Files Attached Files

  4. #4
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,139

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    or:

    =TRANSPOSE(FILTERXML("<A><B>"&SUBSTITUTE(TRIM(SUBSTITUTE(A2,"&",""))," ","</B><B>")&"</B></A>","//B[ (contains(.,'/') or contains(.,'-')) and string-length(.) >=8 ]"))

    which will deal with dd/mm/yy and dd-mm-yy separated dates. It's also happy if there is more text AFTER the dates.
    Attached Files Attached Files
    Glenn




    None of us get paid for helping you... we do this for fun. So DON'T FORGET to say "Thank You" to all who have freely given some of their time to help YOU

  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. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,417

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Any questions?

  6. #6
    Registered User
    Join Date
    06-23-2022
    Location
    Cheshire
    MS-Off Ver
    365 apps for enterprise
    Posts
    34

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Hi, that works for the first formula : =DATEVALUE(TRIM(RIGHT(SUBSTITUTE(TRIM(RIGHT(SUBSTITUTE(TRIM(SUBSTITUTE(SUBSTITUTE(LEFT(A1,LEN(A1)-11),"-",""),"&",""))," ",REPT(" ",99)),98))," ",REPT(" ",99)),98))), how do i add additional condition such as : and as well as - ?

    The second formula : =DATEVALUE(TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",99)),98))) as i have just noticed that there are also some dates that read 08/03/21 - 09/3/2021 and also vice versa, so a full year type (2021) mixed in with a short year type (21)

  7. #7
    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. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,417

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    OK - so you didn't account for all eventualities after all. Go with Glenn's, which I think will work.

    Next time you ask a question like this, please ensure that the sample data is realistic and provided in a sample workbook. Thanks.

  8. #8
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,139

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    BtW, mine will fall over if the non date string with a / is >=8 characters e.g. 2022/850

  9. #9
    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. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,417

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Thanks for the kind rep comment.

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.

  10. #10
    Registered User
    Join Date
    06-23-2022
    Location
    Cheshire
    MS-Off Ver
    365 apps for enterprise
    Posts
    34

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Hi, encountered a slight problem, there are a couple of dates in the mix that have the sequence that follows :

    19/11/2021- 05/12/2011 which produces 19/11/2021- in the first cell

    How would I incorporate this into the formula so that it gets rid of the - or any other potential item after the date ?

    The rest of the formula works really well, didnt see this one until I ran your formula and it threw this up as a problem

  11. #11
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,139

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    I'm sorry, but it's not clear what is in the cell and what you expect to see. Post an Excel sheet with before/after.

  12. #12
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,139

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    OK. I get it now.... Are there any - separated dates, e.g. 23-07-2021 in your dataset??

  13. #13
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,139

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    If there are NONE, then this works:

    =TRANSPOSE(FILTERXML("<A><B>"&SUBSTITUTE(TRIM(SUBSTITUTE(SUBSTITUTE(A2,"-",""),"&",""))," ","</B><B>")&"</B></A>","//B[ (contains(.,'/') or contains(.,'-')) and string-length(.) >=8 ]"))
    Attached Files Attached Files

  14. #14
    Registered User
    Join Date
    06-23-2022
    Location
    Cheshire
    MS-Off Ver
    365 apps for enterprise
    Posts
    34

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Please see attached sheet
    Attached Files Attached Files

  15. #15
    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. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,417

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    You need to include at least ONE example of EVERY format we need to take into consideration - two identical examples are not enough.

    Please put together something comprehensive. Thanks.

  16. #16
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,139

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Iteration 3, based on the additions at Post 14...


    =TRANSPOSE(FILTERXML("<A><B>"&SUBSTITUTE(TRIM(SUBSTITUTE(SUBSTITUTE(A2,"-"," "),"&",""))," ","</B><B>")&"</B></A>","//B[ (contains(.,'/') or contains(.,'-')) and string-length(.) >=8 ]"))
    Attached Files Attached Files

  17. #17
    Registered User
    Join Date
    06-23-2022
    Location
    Cheshire
    MS-Off Ver
    365 apps for enterprise
    Posts
    34

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Absolutely fantastic result much appreciated Glenn and Ail for your patience with this.

    Many thanks

    John

  18. #18
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,139

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Iteration 4... slight mistake in the previous one.

    =TRANSPOSE(FILTERXML("<A><B>"&SUBSTITUTE(TRIM(SUBSTITUTE(SUBSTITUTE(A2,"-"," "),"&",""))," ","</B><B>")&"</B></A>","//B[ (contains(.,'/') ) and string-length(.) >=8 ]"))
    Attached Files Attached Files

  19. #19
    Registered User
    Join Date
    06-23-2022
    Location
    Cheshire
    MS-Off Ver
    365 apps for enterprise
    Posts
    34

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Thank you for this fantastic solution, however i have run into problems, the data that is being used has some additional variations, is there any way to adjust the formula to include (contains(.,':') & contains(.,'.') and also how do I adjust in future for any other variations I may encounter.

    Any help is appreciated as always.

    Thank you

  20. #20
    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. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,417

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Remove the SOLVED tag if you'd like further assistance.

  21. #21
    Registered User
    Join Date
    06-23-2022
    Location
    Cheshire
    MS-Off Ver
    365 apps for enterprise
    Posts
    34

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Do I also re-post the extra question ?

  22. #22
    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. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,417

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    No. You have bumped the thread and removed the SOLVED tag - that's enough. Just wait patiently until someone offers help.

  23. #23
    Forum Expert CheeseSandwich's Avatar
    Join Date
    12-22-2021
    Location
    Kent, England
    MS-Off Ver
    365 - 2404-17531.20128
    Posts
    1,361

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Below is a different way of looking at it (as long as you have the functions available):

    =LET(ts,--TEXTSPLIT(A2,{" ","-"}),TOROW(IF(LEN(ts)<>5,NA(),ts),2))

    Would be good to see more examples of the date strings you mention.
    If things don't change they stay the same

  24. #24
    Registered User
    Join Date
    06-23-2022
    Location
    Cheshire
    MS-Off Ver
    365 apps for enterprise
    Posts
    34

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Hi this is the formula I have from another group member,

    =TRANSPOSE(FILTERXML("<A><B>"&SUBSTITUTE(TRIM(SUBSTITUTE(SUBSTITUTE(A2,"-"," "),"&",""))," ","</B><B>")&"</B></A>","//B[ (contains(.,'/') or contains(.,'-')) and string-length(.) >=8 ]"))

    and it works for the conditions that are within it, but I am looking to add more conditions to formula so that there is a greater variety of date options that can be evaluated.

    The section that the formula checks for the date configuration has this bit contains(.,'/') or contains(.,'-')) its checks the de-limiter used in the date i.e. 10/12/2022 or 10-12-2022 and then extracts the dates into consecutive cells, I am looking to broaden the number of options it can handle and extract the relevant data.

    Hope that gives a better insight into the formula I am using.

  25. #25
    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. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,417

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Please provide an updated sample workbook with clear annotations.

  26. #26
    Forum Expert CheeseSandwich's Avatar
    Join Date
    12-22-2021
    Location
    Kent, England
    MS-Off Ver
    365 - 2404-17531.20128
    Posts
    1,361

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Quote Originally Posted by AliGW View Post
    Next time you ask a question like this, please ensure that the sample data is realistic and provided in a sample workbook. Thanks.
    Quote Originally Posted by AliGW View Post
    You need to include at least ONE example of EVERY format we need to take into consideration
    Quote Originally Posted by Glenn Kennedy View Post
    I'm sorry, but it's not clear what is in the cell and what you expect to see. Post an Excel sheet with before/after.
    Quote Originally Posted by CheeseSandwich View Post
    Would be good to see more examples of the date strings you mention.
    Please post some more examples of the data you have.

  27. #27
    Registered User
    Join Date
    06-23-2022
    Location
    Cheshire
    MS-Off Ver
    365 apps for enterprise
    Posts
    34

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Hi sorry, here is an example work book of the current formula and some examples of what it can and cant handle.

    Cheers again

  28. #28
    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. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,417

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    In C6 copied down:

    =--SUBSTITUTE(TRIM(TEXTSPLIT(B6,{"-",":",",","to"})),".","/")

    Format all the results columns as SHORT DATE.

    EDIT: No - this doesn't work. Back to the drawing board ...

  29. #29
    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. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,417

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Is a "-" between dates meant to be dealt with like "to"?

  30. #30
    Registered User
    Join Date
    06-23-2022
    Location
    Cheshire
    MS-Off Ver
    365 apps for enterprise
    Posts
    34

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Yes it is, thank you

  31. #31
    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. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,417

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Try this, then:

    =IF(B6="","",LET(d,SUBSTITUTE(B6,".","/"),IF(NOT(ISERROR(FIND(" to ",d))),SEQUENCE(,(MID(d,15,10)+0)-(LEFT(d,10)+0)+1,--LEFT(d,10),1),--TRIM(TEXTSPLIT(d,{":",","," - "})))))

    No doubt there will be more things you haven't considered, though ...
    Last edited by AliGW; 11-03-2023 at 06:45 AM.

  32. #32
    Forum Expert CheeseSandwich's Avatar
    Join Date
    12-22-2021
    Location
    Kent, England
    MS-Off Ver
    365 - 2404-17531.20128
    Posts
    1,361

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Here is another one to try:

    Please Login or Register  to view this content.

  33. #33
    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. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,417

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    That doesn't work for those with "to" that require a range.

  34. #34
    Registered User
    Join Date
    06-23-2022
    Location
    Cheshire
    MS-Off Ver
    365 apps for enterprise
    Posts
    34

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Absolutely fantastic, works brilliantly, thank you so much.

  35. #35
    Registered User
    Join Date
    06-23-2022
    Location
    Cheshire
    MS-Off Ver
    365 apps for enterprise
    Posts
    34

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Thank you great solution

  36. #36
    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. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,417

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Oh! Well that's NOT what your expected results show, but try this:

    =IF(B6="","",LET(d,SUBSTITUTE(B6,".","/"),IF(OR(NOT(ISERROR(FIND(" to ",d))),NOT(ISERROR(FIND(" - ",d)))),SEQUENCE(,(MID(d,15,10)+0)-(LEFT(d,10)+0)+1,--LEFT(d,10),1),--TRIM(TEXTSPLIT(d,{":",","," - "})))))

  37. #37
    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. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,417

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    They can't both be right, as they produce different results!!!

    I don't think you are being thorough enough in your testing.

    Glad to have helped.

    If that takes care of your original question, please choose Thread Tools from the menu link above and mark this thread as SOLVED.

    Also, if you have not already done so, you may not be aware that you can thank anyone who offered you help towards a solution for your issue by clicking the small star icon (* Add Reputation) located in the lower left corner of the post in which the help was given. By doing so you can add to the reputation(s) of each of those who offered help.

  38. #38
    Forum Expert CheeseSandwich's Avatar
    Join Date
    12-22-2021
    Location
    Kent, England
    MS-Off Ver
    365 - 2404-17531.20128
    Posts
    1,361

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Quote Originally Posted by AliGW View Post
    That doesn't work for those with "to" that require a range.
    This version will work with the 'to' ranges, however, it won't work if there are seperate ranges AND to ranges in the same string like:
    "11/03/2022 - 12/04/2022 11.10.2023 to 12.10.2023"

    Please Login or Register  to view this content.

  39. #39
    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. 2405 (Windows 11 23H2 64-bit)
    Posts
    81,417

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    It doesn't work, though, with ranges like that in B6 (see the OP's reply to me in post #30 and my update in post #36).

    Mine won't cope with two ranges in a cell, but there aren't any of those in the sample file ... Probably to be continued!!!
    Last edited by AliGW; 11-03-2023 at 08:26 AM. Reason: Typo fixed.

  40. #40
    Forum Expert CheeseSandwich's Avatar
    Join Date
    12-22-2021
    Location
    Kent, England
    MS-Off Ver
    365 - 2404-17531.20128
    Posts
    1,361

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Sorry i missed post 30, i see what you mean now. Below is my updated formula given the heads up about post 30. I will wait for the OP now.

    Please Login or Register  to view this content.

  41. #41
    Forum Guru HansDouwe's Avatar
    Join Date
    06-21-2022
    Location
    Nederland
    MS-Off Ver
    365 V2403 (Build 17330.20000)
    Posts
    6,465

    Re: Require a formula to extract 2 dates from a string and place them into 2 separate cell

    Another solution that does everything.

    Please try in C6 and copy down:
    Please Login or Register  to view this content.
    Last edited by HansDouwe; 11-03-2023 at 10:41 AM.

+ 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] Lookup formula to separate dates/numbers out of a text string
    By kdestef1 in forum Excel Formulas & Functions
    Replies: 13
    Last Post: 08-20-2018, 03:38 PM
  2. Replies: 9
    Last Post: 03-09-2015, 10:15 PM
  3. Need to extract data from multiple worksheets and place in a separate worksheet
    By chuck_p in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 12-03-2014, 01:56 PM
  4. How do I extract dates and place them in a separate cell?l
    By mango_68 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 04-30-2014, 07:36 PM
  5. [SOLVED] Require Formula to extract data to then populate multiple cells
    By amasson in forum Excel Formulas & Functions
    Replies: 19
    Last Post: 04-23-2013, 04:17 AM
  6. Extract integers from a number and place in separate cells
    By fgwilliamson in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 03-17-2012, 09:37 PM
  7. Separate string and place into specific cells
    By genestoy in forum Excel Programming / VBA / Macros
    Replies: 35
    Last Post: 09-02-2010, 02:34 PM

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