Results 1 to 6 of 6

cant make sound alert beep multipl times

Threaded View

  1. #1
    Registered User
    Join Date
    03-31-2014
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    4

    cant make sound alert beep multipl times

    Hi All,

    I joined only a few days back.I am a beginner for VBA.I am trying to set up a sound alert based on a threshold value in cells/cell of a column.If the value is reached in multiple cells the beep will be that many times.The issue is that it beeps only once.Below is the code I have written .Pls tell me where is the mistake.

    Thanks

    jaypeek

    Moderator's note: Please take the time to review our rules. There aren't many, and they are all important. Rule #3 requires code tags. I have added them for you this time because you are a new member. --6StringJazzer

      Option Explicit
    
      Sub testAlert()
      Dim myRange As Range
      Set myRange = Range(Cells(1, 1), Cells(10, 1))
      Dim i As Integer
                  For i = 1 To myRange.Count
                     If myRange(i).Value >= 10 Then
                     Beep
                     End If
                Next
      End Sub
    Last edited by 6StringJazzer; 04-03-2014 at 02:23 PM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Beep or Make Sound after Calcing
    By [email protected] in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 03-23-2016, 02:32 PM
  2. Beep sound when condition met.
    By Rufles in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 02-26-2014, 11:20 AM
  3. Auto "Beep" sound doesn't work
    By byron. in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 05-21-2012, 01:48 PM
  4. Beep Change The Sound
    By Bob in forum Excel General
    Replies: 0
    Last Post: 07-06-2006, 07:00 PM
  5. [SOLVED] Sound alert
    By Antonio in forum Excel General
    Replies: 3
    Last Post: 05-30-2006, 02:15 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