+ Reply to Thread
Results 1 to 9 of 9

Hide a data

Hybrid View

  1. #1
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: Hide a data

    Another Option...
    Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Intersect(Target, Range("B4:B3000")) Is Nothing Then
        Application.EnableEvents = False
        If Target.CountLarge > 1 Then
            Target.Offset(, 2).Resize(Target.Cells.Count) = ""
        ElseIf Target <> "" Then
            Target.Offset(, 2) = 200
        Else
            Target.Offset(, 2) = ""
        End If
        Application.EnableEvents = True
    End If
    End Sub
    Attached Files Attached Files
    Good Luck...
    I don't presume to know what I am doing, however, just like you, I too started somewhere...
    One-day, One-problem at a time!!!
    If you feel I have helped, please click on the [★ Add Reputation] to left of post window...
    Also....Add a comment if you like!!!!
    And remember...Mark Thread as Solved...
    Excel Forum Rocks!!!

+ 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. Replies: 1
    Last Post: 02-01-2022, 01:24 AM
  2. hide save as box and break links, normal hide aren't working
    By abrcrmdl23 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-28-2021, 07:26 PM
  3. Auto-Hide Data label if data is 0% - Percentage
    By dLhx in forum Excel General
    Replies: 8
    Last Post: 08-03-2015, 04:15 AM
  4. Hide data
    By skate1991 in forum Excel General
    Replies: 4
    Last Post: 09-03-2012, 01:33 PM
  5. VBA hide row based on pull down with button to toggle show/hide
    By myronr in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 06-12-2012, 06:07 PM
  6. Hide rows depending on data, BUT merge other data
    By Badvgood in forum Excel General
    Replies: 1
    Last Post: 01-18-2010, 12:05 PM
  7. Hide the data label for a data table in a chart
    By Kathy in forum Excel Charting & Pivots
    Replies: 2
    Last Post: 04-23-2005, 11:08 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