+ Reply to Thread
Results 1 to 2 of 2

Showing/Displaying Message to User

  1. #1
    Registered User
    Join Date
    10-18-2006
    Posts
    1

    Showing/Displaying Message to User

    Hi im currently doin a A level in ICT, Part of this is numerical numbering and modeling, im having trouble with part of this work, i have a range of 3 cells (L9, L10 and L11) which i have named as a group (Option_Block) each of these cells has the formula =IF(K9<15,"A","FULL") what i would like todo is show a message in a new cell for example C20 and if one of the 3 cells (L9, L10 and L11) show FULL then the message - "Group Full please select another Group" will appear.

    I dont know if anyone can help me, if not nevermind

    Thnks

  2. #2
    Valued Forum Contributor
    Join Date
    12-16-2004
    Location
    Canada, Quebec
    Posts
    363
    Hi

    Just as a note it always a good habit of posting a sample of your works

    You could try this code
    Sub full_message()
    Range("L9").Select
    L9 = ActiveCell.Value
    Range("L10").Select
    L10 = ActiveCell.Value
    Range("L11").Select
    L11 = ActiveCell.Value
    If L9 = "FULL" Or L10 = "FULL" Or L11 = "FULL" Then
    'MsgBox "Group Full please select another Group"
    Range("C20").Select
    ActiveCell.Value = "Group Full please select another Group"
    End If
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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