+ Reply to Thread
Results 1 to 2 of 2

If SpecialCells(xlCellTypeVisible) have already data then warn

Hybrid View

  1. #1
    Forum Contributor HaroonSid's Avatar
    Join Date
    02-28-2014
    Location
    india
    MS-Off Ver
    Excel 2013
    Posts
    2,095

    If SpecialCells(xlCellTypeVisible) have already data then warn

    i am using below code to add some data to SpecialCells(xlCellTypeVisible)

    Public Sub macropastSC2()
    Range("M1").Copy
    Range("J4", Cells(Rows.Count, "J").End(xlUp)).SpecialCells(xlCellTypeVisible).Cells(1, 1).Select
    Selection.PasteSpecial (xlPasteValues)
    End Sub
    i want to check first if above cell have already data then appear a msgbox otherwise run the code

    thanx alot
    Use Code-Tags for showing your code :
    Please mark your question Solved if there has been offered a solution that works fine for you
    If You like solutions provided by anyone, feel free to add reputation using STAR *

  2. #2
    Forum Expert Arkadi's Avatar
    Join Date
    02-13-2014
    Location
    Smiths Falls, Ontario, Canada
    MS-Off Ver
    Office 365
    Posts
    5,059

    Re: If SpecialCells(xlCellTypeVisible) have already data then warn

    Hi HaroonSid ,

    How about:

    Public Sub macropastSC2()
    Range("M1").Copy
    Range("J4", Cells(Rows.Count, "J").End(xlUp)).SpecialCells(xlCellTypeVisible).Cells(1, 1).Select
    If Selection.Value <> vbNullString Then
        MsgBox ("The cell already contains data.")
    Else
        Selection.PasteSpecial (xlPasteValues)
    End If
    End Sub
    Please help by:

    Marking threads as closed once your issue is resolved. How? The Thread Tools at the top
    Any reputation (*) points appreciated. Not just by me, but by all those helping, so if you found someone's input useful, please take a second to click the * at the bottom left to let them know

    There are 10 kinds of people in this world... those who understand binary, and those who don't.

+ 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. SpecialCells(xlCellTypeVisible)
    By Wijnand1 in forum Excel Programming / VBA / Macros
    Replies: 12
    Last Post: 10-19-2016, 12:38 PM
  2. [SOLVED] Resize Range & Specialcells (xlCellTypeVisible)
    By BuZZarD73 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 05-14-2015, 03:46 AM
  3. VBA Range.SpecialCells( xlCellTypeVisible ) not working as a UDF
    By dwk49 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 09-29-2012, 05:29 AM
  4. Resize Range SpecialCells xlCellTypeVisible
    By goss in forum Excel General
    Replies: 1
    Last Post: 07-13-2012, 02:13 PM
  5. Count only SpecialCells(xlCellTypeVisible) with a certain .Value
    By jordan2322 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-21-2012, 10:19 PM
  6. Cut & Paste - AutoFilter SpecialCells(xlCellTypeVisible)
    By SunOffice in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 06-19-2011, 05:28 PM
  7. specialcells(xlcelltypevisible): same code, different results?
    By dreamz in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 10-12-2006, 12:12 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