Hi sweetsue,
Mmmm...... I am not posh enough to have a list of funds <g> but let us
see:
I am assuming that:
sheet two is named "Morning Star"
the list of fund names in sheet one is in A1:A25
the list of transferred updates is in sheet one in B1:B25
'Morning Star' also has a list of funds in A1:A25
'Morning Star' has the downloaded updates in B1:B25
the updates are text values like +30 or -50 etc
You wish to transfer the latest updates from 'Morning Star' B1:B25 to sheet
one B1:B25
I the above is correct then I would use INDEX/MATCH in sheet one:
=--INDEX('Morning Star'!$B$1:$B$25,MATCH(A1,'Morning Star'!$A$1:$A$25,0))
and copy it down from B1 to B25
This looks down 'Morning Star' A1:A25 to find a Matching name with sheet one
cell A1, then indexes down 'Morning Star' B1:B25 the same number of cells to
get the update. The update will be a text value and so to change it onto a
number I have added a double negative at the start to convert the text
number into a number.
If you want the value of the fund B1:B25 to be automatically updated by the
amount of update in 'Morning Star' B1:B25 then set Iteration to 1 and use
the formula:
=B1+(--INDEX('Morning Star'!$B$1:$B$25,MATCH(A1,'Morning
Star'!$A$1:$A$25,0)))
and copy it down B1:B25
If I am completely off the wall then post back and perhapd one of our posh
friend who look after their own funds in Excel will jump in with a better
solution.
--
HTH
Sandy
[email protected]
Replace@mailinator with @tiscali.co.uk
Oh yes! Always try something new on a COPY of your spreadsheet.........
just in case!