Linking Data between worksheets within the same workbook

KatrinaJoy

New Member
Joined
Nov 18, 2005
Messages
2
This may be a very basic question for most of your but I need to figure out how to turn this

SELECT a
FROM otherworksheet
WHERE e = 'blah'

into a formula in a cell.

I have a worksheet where I log Co-op Credit memos called memolog. on this sheet we have the acct#(A), cust. name(B), cust. inv.#(C), cm date(D)cm#(e), clm date(F)....

On another worksheet, global memo, we have a pretty version of this to mail to the customer. I want to know how to take the data from memolog, and get it into the correct places on global memo when I change the cm#(H2) field on global memo. I've tried using the Indirect function but I can't seem to figure out how to use it correctly.

I appologize in advance if this is a double posting. You also might be wondering how I know SQL but can't figure out a simple Excel function. I was/am a ColdFusion programmer. I have never worked with Excel very much. Mostly Access, SQL and Oracle. If I had my way I'd put this all in a database instead of a huge spreadsheet.
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Welcome to the Board.

You can get the acct# like this:

=INDEX(memolog!A:A,MATCH(H2,memolog!E:E,FALSE))

Chage the column reference in memolog!A:A to get the other data.
 
Upvote 0

Forum statistics

Threads
1,215,039
Messages
6,122,799
Members
449,095
Latest member
m_smith_solihull

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