multiple logics

joewray32

New Member
Joined
Oct 20, 2015
Messages
1
I have a software called REVU where I can collect measurements off of a plan and export them into an excel sheets. I also have a previous excel sheet where I enter all my data. I want to be able to take the REVU file, upload it into my existing file and have my existing file search for certain data. below is a list of what I'm trying to do.

Existing File (default):
A B
1 10x10 0 ( I want the exiting file to automatically read the imported file, if 10x10 has 4, then i want it to return 4, if not, then return 0)
2 12x12 0
3 14x14 0


Imported File:
A B
1 10x10 4
2 12x12 0
3 14x14 6

I tried this =if(imported file!A1:A3="10x10",imported file!B4,0) but that isn't working and I get a #VALUE!
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Welcome to the Board!

As long as column A has unique values, you can use VLOOKUP.

=VLOOKUP(A1,'Imported File'!$A$1:$B$3,2,FALSE)

HTH,
 
Upvote 0

Forum statistics

Threads
1,215,891
Messages
6,127,604
Members
449,388
Latest member
macca_18380

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