+ Reply to Thread
Results 1 to 2 of 2

function or formula to put data to ... or indirect addressing in form "check box"

  1. #1
    Registered User
    Join Date
    11-12-2012
    Location
    Kaunas
    MS-Off Ver
    Excel 2010
    Posts
    6

    function or formula to put data to ... or indirect addressing in form "check box"

    Hi, I'm new here. sorry if I raise topic discussed already.
    I started to use a "check box" form recently and I like it very much. There are some disadvantages, however:
    1. copying or extending the array of check boxes must be completed by manual description of form target one-by-one.
    2. No succeed using indirect addressing of form target.
    What I want to create?
    I want to use form-worksheet, filled quickly and easy by clicking the check boxes. Questionnaire type. The form has address offset. The required content (based on checked or unchecked boxes) is recorded to array (on second worksheet), which address is defined by address offset. So I clear the form, change the address offset and start to fill again next item.
    I use indirect, it works fine for me.
    The problem is to find excel function able to place the data to somewhere (the same workbook, other sheet). All functions I know until now are able to retrieve data from.
    Last edited by Algirdas; 11-21-2012 at 05:36 AM.

  2. #2
    Registered User
    Join Date
    11-12-2012
    Location
    Kaunas
    MS-Off Ver
    Excel 2010
    Posts
    6

    Re: function or formula to put data to ... or indirect addressing in form "check box"

    it is function. Macro to paste copied area to address, defined in a cell:
    Sub copy_04()
    ' copy_1
    Dim MyWs As Worksheet
    Dim area As Variant
    Set MyWs = Worksheets("current")
    area = MyWs.Range("R1").Value
    Sheets("current").Select
    Range("A1:P50").Select
    Selection.copy
    Sheets("store").Select
    Range(area).Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
    :=False, Transpose:=False
    End Sub

    address of target area is in the cell current!R1

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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