Transfering Data from two different sheets

alexB588

New Member
Joined
Nov 6, 2017
Messages
3
Ok so I am not an expert at excel, but I know basics on how to pull from different sheets.
That being said my issue is:
I have Sheet 1 (Builder List) that contains all the builders that I work with, I have an empty column that is labeled "Total YTD Price". I want to transfer data from Sheet 2(Project Tracker)Column F that is labeled "Total Cost" give me a running YTD total.

Example.) Sheet 1(Builder List), B37 is my builder "Great Northern Construction". I want all the price data from sheet 2 (Project Tracker) for all of my Great Northern Construction projects to have a running total on sheet 1 (Builder List).


I will eventually do that for all my builders but I cannot figure out the formula on how to do it.

Any feedback would be appreciated.

PS I wish you could attached excel files here
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Take a look at SUMIF() for this

=sumif('sheet2'!B:B,A2,'sheet2'!F:F)

Pretty much what this says - in case I have the references wrong - is as follow...
find all references in Sheet2 column A for the criteria specified in A2 (on sheet1), and ad up all values for those rows, from column F
 
Upvote 0
Boom, you rock. Had to do a little adjusting. Works like a charm
=SUMIF('Project Tracking'!A:A,B37,'Project Tracking'!F:F)
 
Upvote 0

Forum statistics

Threads
1,215,884
Messages
6,127,564
Members
449,385
Latest member
KMGLarson

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