To make connection between one sheet with another sheet

Kenor

Board Regular
Joined
Dec 8, 2020
Messages
116
Office Version
  1. 2016
Platform
  1. Windows
I need a formula to make the connection between the data from sheet A (before I transfer the data to sheet B) to another sheet C which is in the form automatically. The data in sheet A will always change as each incoming data will be transferred to sheet B and will delete all the original data in sheet A.
When I use normal way which is type = in sheet C , then click the data in sheet A and press enter. Yes, it work . But after I transfer data to sheet B and other data coming in sheet A. But in sheet C become #REF! .
I want it automatically connect between sheet A and sheet C, so that I can print the form in sheet C easily.
 

Attachments

  • Sheet A.PNG
    Sheet A.PNG
    72.4 KB · Views: 4
  • Sheet C.PNG
    Sheet C.PNG
    54.9 KB · Views: 4

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
I suggest to use volatile function Offset . and reference From the cell which you will not delete from sheet A .
 
Upvote 0
Sorry, could u show me one example. I still can't do that.

Thanks...??
 
Upvote 0
I need to know source Data location .the Actual sheet name , cell address ( Row and columns number) Of Sheet A.
 
Upvote 0
I need to know source Data location .the Actual sheet name , cell address ( Row and columns number) Of Sheet A.
Data from Sheet "IN" copy to Sheet "Scrap Transfer Form"

C3,D3,E3,F3 in sheet "IN" to B10,E10, G10, I10 in sheet "Scrap Transfer Form"
Sheet "IN" (C3) to Sheet "Scrap Transfer Form" (B10)
Sheet "IN" (D3) to Sheet "Scrap Transfer Form" (E10)
Sheet "IN" (E3) to Sheet "Scrap Transfer Form" (G10)
Sheet "IN" (F3) to Sheet "Scrap Transfer Form" (I10)

C4,D4,E4,F4 in sheet "IN" to B11,E11, G11, I11 in sheet "Scrap Transfer Form"
Sheet "IN" (C4) to Sheet "Scrap Transfer Form" (B11)
Sheet "IN" (D4) to Sheet "Scrap Transfer Form" (E11)
Sheet "IN" (E4) to Sheet "Scrap Transfer Form" (G11)
Sheet "IN" (F4) to Sheet "Scrap Transfer Form" (I11)

C5,D5,E5,F5 in sheet "IN" to B12,E12, G12, I12 in sheet "Scrap Transfer Form"
Sheet "IN" (C5) to Sheet "Scrap Transfer Form" (B12)
Sheet "IN" (D5) to Sheet "Scrap Transfer Form" (E12)
Sheet "IN" (E5) to Sheet "Scrap Transfer Form" (G12)
Sheet "IN" (F5) to Sheet "Scrap Transfer Form" (I12)

C6,D6,E6,F6 in sheet "IN" to B13,E13, G13, I13 in sheet "Scrap Transfer Form"
Sheet "IN" (C6) to Sheet "Scrap Transfer Form" (B13)
Sheet "IN" (D6) to Sheet "Scrap Transfer Form" (E13)
Sheet "IN" (E6) to Sheet "Scrap Transfer Form" (G13)
Sheet "IN" (F6) to Sheet "Scrap Transfer Form" (I13)

and continue for next row..
 
Upvote 0
Hi try this!
Formula in Sheet "Scrap Transfer Form"

In cell B10 => =IF(OFFSET(IN!$A$1,ROWS($B$10:B10)+1,2)=0,"",OFFSET(IN!$A$1,ROWS($B$10:B10)+1,2))
E10 => =IF(OFFSET(IN!$A$1,ROWS($B$10:B10)+1,3)=0,"",OFFSET(IN!$A$1,ROWS($B$10:B10)+1,3))
G10 => =IF(OFFSET(IN!$A$1,ROWS($B$10:B10)+1,4)=0,"",OFFSET(IN!$A$1,ROWS($B$10:B10)+1,4))
I10 => =IF(OFFSET(IN!$A$1,ROWS($B$10:B10)+1,5)=0,"",OFFSET(IN!$A$1,ROWS($B$10:B10)+1,5))
and drag down th formula .
 
Upvote 0
Solution
Hi try this!
Formula in Sheet "Scrap Transfer Form"

In cell B10 => =IF(OFFSET(IN!$A$1,ROWS($B$10:B10)+1,2)=0,"",OFFSET(IN!$A$1,ROWS($B$10:B10)+1,2))
E10 => =IF(OFFSET(IN!$A$1,ROWS($B$10:B10)+1,3)=0,"",OFFSET(IN!$A$1,ROWS($B$10:B10)+1,3))
G10 => =IF(OFFSET(IN!$A$1,ROWS($B$10:B10)+1,4)=0,"",OFFSET(IN!$A$1,ROWS($B$10:B10)+1,4))
I10 => =IF(OFFSET(IN!$A$1,ROWS($B$10:B10)+1,5)=0,"",OFFSET(IN!$A$1,ROWS($B$10:B10)+1,5))
and drag down th formula .

Thank you sooo muchhhhh.....its work!! ??
 
  • Like
Reactions: alz
Upvote 0

Forum statistics

Threads
1,213,556
Messages
6,114,284
Members
448,562
Latest member
Flashbond

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top