Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7952897
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T02:59:59+00:00 2026-06-04T02:59:59+00:00

I am trying to use a VBA regular expression to validate a time range

  • 0

I am trying to use a VBA regular expression to validate a time range of the form: #0:00xm - #0:00xm where x is a or p. So the string literal could be "1:30pm - 12:00am". I want to match cells that have this pattern.

When I use the regular express in this online tool: http://public.kvalley.com/regex/regex.asp and check my expression, it matches correctly.

However, when I use the same expression in VBA, it does not match.

Dim rRange As Range
Dim rCell As Range

Set rRange = Range("A2", "A4") '"G225")

For Each rCell In rRange.Cells
MsgBox (rCell.Value)
    If rCell.Value Like "^([0-9]{1,2}[:][0-9]{2}[apm]{2}[ ][-][ ][0-9]{1,2}[:][0-9]{2}[apm]{2})$" Then
    MsgBox ("YES")
        'rCell.Interior.Color = RGB(0, 250, 0)
    Else
    MsgBox ("NO")
        'rCell.Interior.Color = RGB(250, 0, 0)
    End If
Next rCell
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T03:00:00+00:00Added an answer on June 4, 2026 at 3:00 am

    To anyone who cares, this is my fixed, working version with special thanks to dda for his simpler RegEx ^^:

    Dim rRange As Range
    Dim rCell As Range
    
    Dim re As Object
    Set re = CreateObject("vbscript.regexp")
    With re
      .Pattern = "^\d\d?:\d\d[aApP][mM] - \d\d?:\d\d[aApP][mM]$"
      .Global = False
      .IgnoreCase = False
    End With
    
    Set rRange = Range("A2", "G225")
    
    For Each rCell In rRange.Cells
        If re.Test(rCell) Then
            rCell.Interior.Color = RGB(0, 250, 0)
        Else
            rCell.Interior.Color = RGB(250, 0, 0)
        End If
    Next rCell
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to use batch updates in Access VBA. My code works fine
I'm trying to use Excel VBA to write to a text file. I'm doing
I am trying to use Runtime exec() to run a vba script with arguements.
VBA newbie over here. I'm trying to use an array formula through excel vba
All, I'm trying to use vlookup in a simple VBA function, but it is
I'm using VBA in Excel and am trying to use the popular ShellAndWait subroutine.
Trying to use Excel VBA to capture all the file attributes from files on
With VBA, I'm trying to use regex to capture the filename from a UNC
I'm trying to build a VBA form that runs a SQL Server stored procedure
I am trying to use VBA to insert some text into a PowerPoint TextRange

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.