Remove Text after particular timing

Vikas Kumar

New Member
Joined
Apr 2, 2017
Messages
49
Hi,

I have some text in column A similar following table and I want to extract timings after 04:00 PM,

Timings
Output
03:15 PM, 06:15 PM, 09:15 PM

<colgroup><col width="319"></colgroup><tbody>
</tbody>
06:15 PM, 09:15 PM

<colgroup><col width="190"></colgroup><tbody>
</tbody>
10:25 AM, 01:30 PM, 04:35 PM, 07:40 PM, 10:45 PM

<colgroup><col width="319"></colgroup><tbody>
</tbody>
04:35 PM, 07:40 PM, 10:45 PM

<colgroup><col width="190"></colgroup><tbody>
</tbody>
09:30 AM, 12:45 PM, 04:00 PM, 07:15 PM, 10:30 PM

<colgroup><col width="319"></colgroup><tbody>
</tbody>
04:00 PM, 07:15 PM, 10:30 PM

<colgroup><col width="190"></colgroup><tbody>
</tbody>
06:30 PM

<colgroup><col width="319"></colgroup><tbody>
</tbody>
06:30 PM

<tbody>
</tbody>

As per above sample I would like to remove timing before 04:00 PM and remaining would be Output.

Thanks in advance for help.
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
A couple of possible options. May need a little tweaking in relation to that last item in your sample depending on whether that is a text entry or a numerical entry formatted as Time.

A) A user-defined function. To implement ..

1. Right click the sheet name tab and choose "View Code".
2. In the Visual Basic window use the menu to Insert|Module
3. Copy and Paste the code below into the main right hand pane that opens at step 2.
4. Close the Visual Basic window.
5. Enter the formula as shown in the screen shot below in B2 and copy down.
6. Your workbook will need to be saved as a macro-enabled workbook (*.xlsm)

Code:
Function After4PM(r As Range) As String
  Dim itm As Variant
  
  For Each itm In Split(r.Text, ", ")
    If CDate(itm) >= TimeSerial(16, 0, 0) Then
      After4PM = After4PM & ", " & itm
    End If
  Next itm
  After4PM = Mid(After4PM, 3)
End Function

B) A worksheet formula if you have the TEXTJOIN function as shown in C2

Excel Workbook
ABC
1TimingsOutputOutput
203:15 PM, 06:15 PM, 09:15 PM06:15 PM, 09:15 PM06:15 PM, 09:15 PM
310:25 AM, 01:30 PM, 04:35 PM, 07:40 PM, 10:45 PM04:35 PM, 07:40 PM, 10:45 PM04:35 PM, 07:40 PM, 10:45 PM
409:30 AM, 12:45 PM, 04:00 PM, 07:15 PM, 10:30 PM04:00 PM, 07:15 PM, 10:30 PM04:00 PM, 07:15 PM, 10:30 PM
506:30 PM06:30 PM06:30 PM
Sheet1
 
Last edited:
Upvote 0
Thanks for reply Peter. The UDF is really amazing and this did the trick. But since I am using Excel 2010 version get '#Name' error by formula.
 
Upvote 0
Edit: I hadn't seen your last post so this amendment to the column C formula won't be any good to your either. But it may be of interest to other readers. :)
Glad the UDF was useful.

Forgot to mention that the column C formula in my last post (& this post) assumes no more than 10 times in a cell. If there could be more, an adjustment to that formula, or this shorter one, would be needed.

Excel Workbook
ABC
1TimingsOutputOutput
203:15 PM, 06:15 PM, 09:15 PM06:15 PM, 09:15 PM06:15 PM, 09:15 PM
310:25 AM, 01:30 PM, 04:35 PM, 07:40 PM, 10:45 PM04:35 PM, 07:40 PM, 10:45 PM04:35 PM, 07:40 PM, 10:45 PM
409:30 AM, 12:45 PM, 04:00 PM, 07:15 PM, 10:30 PM04:00 PM, 07:15 PM, 10:30 PM04:00 PM, 07:15 PM, 10:30 PM
506:30 PM06:30 PM06:30 PM
Sheet1
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,077
Messages
6,128,685
Members
449,463
Latest member
Jojomen56

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top