Results 1 to 4 of 4

Number stack formula/Macro?

Threaded View

  1. #2
    Forum Expert
    Join Date
    12-24-2007
    Location
    Alsace - France
    MS-Off Ver
    MS 365 Office Suite
    Posts
    5,088

    Re: Number stack formula/Macro?

    In the sheet's code put
    Option Explicit
    
    Private Sub Worksheet_Change(ByVal Target As Range)
    Const WkCeAd = "A1"
        If (Target.Address <> Range(WkCeAd).Address) Then Exit Sub
        Application.EnableEvents = False
        Range(WkCeAd)(2, 1).Insert Shift:=xlDown
        Range(WkCeAd)(3, 1).Copy
        Range(WkCeAd)(2, 1).PasteSpecial Paste:=xlPasteFormats
        Range(WkCeAd)(2, 1) = Range(WkCeAd)
        Range(WkCeAd) = ""
        Application.EnableEvents = True
    End Sub
    Attached Files Attached Files
    - Battle without fear gives no glory - Just try

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: 10-02-2014, 01:51 PM
  2. Transpose and stack MACRO- Excel 2010
    By Drewfiss in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-25-2014, 08:35 PM
  3. [SOLVED] Need A MACRO to Remove Duplicate Name Header and Stack
    By sbehera in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 12-28-2012, 03:15 PM
  4. [SOLVED] Modify code to transpose a stack of data to rows on to delimit on text hone number field
    By coachtim in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 03-26-2012, 02:52 PM
  5. Macro for Call Stack
    By Karthick083 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 12-21-2010, 06:33 AM
  6. can a macro see the call stack.
    By foxguy in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-13-2009, 08:05 PM
  7. Search for stack number using input
    By jhard in forum Excel General
    Replies: 6
    Last Post: 09-08-2008, 08:25 AM

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