+ Reply to Thread
Results 1 to 5 of 5

Transfer formula for data entered on one column to another tab/column

  1. #1
    Registered User
    Join Date
    04-10-2013
    Location
    Roswell, GA
    MS-Off Ver
    Excel 2010
    Posts
    37

    Transfer formula for data entered on one column to another tab/column

    Good day and hopefully someone can help. I know for an easy way to transfer data entered in a column from one tab to another, I could just enter "=Sheet2!A1". However, in my situation I have an excel spreadsheet with Column A on the first tab having different approval statuses already entered (i.e. deactivated, hold, FCRA approved, etc...) I need a formula so that whenever I change an approval status on my first sheet (FCRA wave received) in column A to Non-FCRA approved or FCRA approved, that entire line will automatically transfer to the 2nd sheet (Approved).

    I have attached an example spreadsheet for assistance. Basically, if I change line 23 to FCRA approved (which I have done on this example spreadsheet attached), I want that entire line to automatically be entered on the 2nd sheet (approved) on the next available line (in this instance, line 16).

    Any help is much appreciated and hopefully this makes sense.
    Attached Files Attached Files

  2. #2
    Valued Forum Contributor adyteo's Avatar
    Join Date
    01-10-2013
    Location
    Calgary
    MS-Off Ver
    Excel 2010
    Posts
    540

    Re: Transfer formula for data entered on one column to another tab/column

    try the attached.
    Template1.xlsm

    I corrected your FCRA Approved (it had a space at the end of Approved). I also cleaned up your Approvals sheet to remove all the blank rows.

    let me know if this is what you wanted.
    Click on the star if you think I helped you

  3. #3
    Registered User
    Join Date
    04-10-2013
    Location
    Roswell, GA
    MS-Off Ver
    Excel 2010
    Posts
    37

    Re: Transfer formula for data entered on one column to another tab/column

    Good day,

    That is close to what I wanted, however, is it possible to transfer the entire line to the next sheet and also include Non-FCRA Approved? With how the formula is set-up, it's transferring anytime "FCRA Approved" is entered in column A on sheet1 to column A on sheet 2. I'd like to also include "Non-FCRA Approved" as well.
    Last edited by weaverswonders6; 01-10-2014 at 11:33 AM.

  4. #4
    Valued Forum Contributor adyteo's Avatar
    Join Date
    01-10-2013
    Location
    Calgary
    MS-Off Ver
    Excel 2010
    Posts
    540

    Re: Transfer formula for data entered on one column to another tab/column

    replace
    Cells(Target.Row, Target.Column)
    with
    Right(Cells(Target.Row, Target.Column), 13) = "FCRA Approved"
    it will take the row if the cell contains FCRA Approved (including Non-FCRA Approved)

  5. #5
    Registered User
    Join Date
    04-10-2013
    Location
    Roswell, GA
    MS-Off Ver
    Excel 2010
    Posts
    37

    Re: Transfer formula for data entered on one column to another tab/column

    I am getting a syntax error...
    I put,
    Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Column = 1 Then

    If Right(Cells(Target.Row, Target.Column) = "FCRA Approved" Then
    Call MoveRow(Target.Row)

    End If

    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)

Similar Threads

  1. Replies: 2
    Last Post: 12-17-2013, 09:59 AM
  2. Replies: 3
    Last Post: 12-12-2013, 04:00 PM
  3. Worksheet function to Autofill formula in column A when data entered in column B
    By boylers75 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 02-07-2013, 02:27 PM
  4. Replies: 11
    Last Post: 07-13-2011, 05:37 PM
  5. Formula for data transfer from rows to column
    By xWiZardx in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-27-2010, 12:10 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