Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 17
Default Reference Cells from other Workbook to complete Formula

Hello,
I'm attempting to make a data sheet that requires a formula to pull from
another workbook, add a cell from a different tab, and plop the total into my
final analysis tab. This may be primary, but this is what I have:

='[eBayActivityRep.xls]2QTR TOTAL'!$B$2+'QTR 2 07'!B2

Of course this doesn't work, and I've tried SUM, SUM/INDIRECT, etc. In
addition to the basic formula result, I'd like the anaylsis cell to default
to "0" if there was no data to pull from for that day.

Your assistance or direction is helpful. It's a difficult topic to search.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,268
Default Reference Cells from other Workbook to complete Formula

Why doesn't it work?

='[eBayActivityRep.xls]2QTR TOTAL'!$B$2+'QTR 2 07'!B2

works fine for me


--
Regards,

Peo Sjoblom


"Dvinechild" wrote in message
...
Hello,
I'm attempting to make a data sheet that requires a formula to pull from
another workbook, add a cell from a different tab, and plop the total into
my
final analysis tab. This may be primary, but this is what I have:

='[eBayActivityRep.xls]2QTR TOTAL'!$B$2+'QTR 2 07'!B2

Of course this doesn't work, and I've tried SUM, SUM/INDIRECT, etc. In
addition to the basic formula result, I'd like the anaylsis cell to
default
to "0" if there was no data to pull from for that day.

Your assistance or direction is helpful. It's a difficult topic to search.



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 17
Default Reference Cells from other Workbook to complete Formula

I get a #VALUE! error. One time when I was messing with it I got a NAME
error. I'm not sure, but my only guess is that the [eBayActivityRep.xls]2QTR
TOTAL' cell is already calculating from two tabs in that workbook.
Suggestions?

"Peo Sjoblom" wrote:

Why doesn't it work?

='[eBayActivityRep.xls]2QTR TOTAL'!$B$2+'QTR 2 07'!B2

works fine for me


--
Regards,

Peo Sjoblom


"Dvinechild" wrote in message
...
Hello,
I'm attempting to make a data sheet that requires a formula to pull from
another workbook, add a cell from a different tab, and plop the total into
my
final analysis tab. This may be primary, but this is what I have:

='[eBayActivityRep.xls]2QTR TOTAL'!$B$2+'QTR 2 07'!B2

Of course this doesn't work, and I've tried SUM, SUM/INDIRECT, etc. In
addition to the basic formula result, I'd like the anaylsis cell to
default
to "0" if there was no data to pull from for that day.

Your assistance or direction is helpful. It's a difficult topic to search.




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 17
Default Reference Cells from other Workbook to complete Formula

I thin k I fixed my own problem, the previous workbook cell was set to an IF
formula that woulf default "" if there was no data. (I don't like making
things messy with a bunch of zeros) ONce I put an actual # in there, the
formula of the new workbook worked. Is there a way I can write a formula that
will populate using the current IF function?

"Dvinechild" wrote:

I get a #VALUE! error. One time when I was messing with it I got a NAME
error. I'm not sure, but my only guess is that the [eBayActivityRep.xls]2QTR
TOTAL' cell is already calculating from two tabs in that workbook.
Suggestions?

"Peo Sjoblom" wrote:

Why doesn't it work?

='[eBayActivityRep.xls]2QTR TOTAL'!$B$2+'QTR 2 07'!B2

works fine for me


--
Regards,

Peo Sjoblom


"Dvinechild" wrote in message
...
Hello,
I'm attempting to make a data sheet that requires a formula to pull from
another workbook, add a cell from a different tab, and plop the total into
my
final analysis tab. This may be primary, but this is what I have:

='[eBayActivityRep.xls]2QTR TOTAL'!$B$2+'QTR 2 07'!B2

Of course this doesn't work, and I've tried SUM, SUM/INDIRECT, etc. In
addition to the basic formula result, I'd like the anaylsis cell to
default
to "0" if there was no data to pull from for that day.

Your assistance or direction is helpful. It's a difficult topic to search.




  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 17
Default Reference Cells from other Workbook to complete Formula

I may have answered my ouwn question, the other workbook cell contains an IF
funciton that will defualt cell to "" if there is no calculation. ( i prefer
no "0" since it can tend to make things more messy). Once I popped actual
numbers in there, my original formula worked. Is there a formula that I can
write that will still populate with the existing IF formula of the other
workbook? I would prefer not to have a bunch of "0" around.

"Dvinechild" wrote:

I get a #VALUE! error. One time when I was messing with it I got a NAME
error. I'm not sure, but my only guess is that the [eBayActivityRep.xls]2QTR
TOTAL' cell is already calculating from two tabs in that workbook.
Suggestions?

"Peo Sjoblom" wrote:

Why doesn't it work?

='[eBayActivityRep.xls]2QTR TOTAL'!$B$2+'QTR 2 07'!B2

works fine for me


--
Regards,

Peo Sjoblom


"Dvinechild" wrote in message
...
Hello,
I'm attempting to make a data sheet that requires a formula to pull from
another workbook, add a cell from a different tab, and plop the total into
my
final analysis tab. This may be primary, but this is what I have:

='[eBayActivityRep.xls]2QTR TOTAL'!$B$2+'QTR 2 07'!B2

Of course this doesn't work, and I've tried SUM, SUM/INDIRECT, etc. In
addition to the basic formula result, I'd like the anaylsis cell to
default
to "0" if there was no data to pull from for that day.

Your assistance or direction is helpful. It's a difficult topic to search.






  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,268
Default Reference Cells from other Workbook to complete Formula

If you use the SUM function it will ignore text ("" blank is text)

=SUM('[eBayActivityRep.xls]2QTR TOTAL'!$B$2,'QTR 2 07'!B2)

should do it


--
Regards,

Peo Sjoblom





"Dvinechild" wrote in message
...
I thin k I fixed my own problem, the previous workbook cell was set to an
IF
formula that woulf default "" if there was no data. (I don't like making
things messy with a bunch of zeros) ONce I put an actual # in there, the
formula of the new workbook worked. Is there a way I can write a formula
that
will populate using the current IF function?

"Dvinechild" wrote:

I get a #VALUE! error. One time when I was messing with it I got a NAME
error. I'm not sure, but my only guess is that the
[eBayActivityRep.xls]2QTR
TOTAL' cell is already calculating from two tabs in that workbook.
Suggestions?

"Peo Sjoblom" wrote:

Why doesn't it work?

='[eBayActivityRep.xls]2QTR TOTAL'!$B$2+'QTR 2 07'!B2

works fine for me


--
Regards,

Peo Sjoblom


"Dvinechild" wrote in message
...
Hello,
I'm attempting to make a data sheet that requires a formula to pull
from
another workbook, add a cell from a different tab, and plop the total
into
my
final analysis tab. This may be primary, but this is what I have:

='[eBayActivityRep.xls]2QTR TOTAL'!$B$2+'QTR 2 07'!B2

Of course this doesn't work, and I've tried SUM, SUM/INDIRECT, etc.
In
addition to the basic formula result, I'd like the anaylsis cell to
default
to "0" if there was no data to pull from for that day.

Your assistance or direction is helpful. It's a difficult topic to
search.





  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 17
Default Reference Cells from other Workbook to complete Formula

Thanks Peo,
I had tried the SUM function before and my missing piece was having to use a
comma between the two numbers/criteria. Sometimes those little things get so
close...but not close enough. Thanks for taking the time.

"Peo Sjoblom" wrote:

If you use the SUM function it will ignore text ("" blank is text)

=SUM('[eBayActivityRep.xls]2QTR TOTAL'!$B$2,'QTR 2 07'!B2)

should do it


--
Regards,

Peo Sjoblom





"Dvinechild" wrote in message
...
I thin k I fixed my own problem, the previous workbook cell was set to an
IF
formula that woulf default "" if there was no data. (I don't like making
things messy with a bunch of zeros) ONce I put an actual # in there, the
formula of the new workbook worked. Is there a way I can write a formula
that
will populate using the current IF function?

"Dvinechild" wrote:

I get a #VALUE! error. One time when I was messing with it I got a NAME
error. I'm not sure, but my only guess is that the
[eBayActivityRep.xls]2QTR
TOTAL' cell is already calculating from two tabs in that workbook.
Suggestions?

"Peo Sjoblom" wrote:

Why doesn't it work?

='[eBayActivityRep.xls]2QTR TOTAL'!$B$2+'QTR 2 07'!B2

works fine for me


--
Regards,

Peo Sjoblom


"Dvinechild" wrote in message
...
Hello,
I'm attempting to make a data sheet that requires a formula to pull
from
another workbook, add a cell from a different tab, and plop the total
into
my
final analysis tab. This may be primary, but this is what I have:

='[eBayActivityRep.xls]2QTR TOTAL'!$B$2+'QTR 2 07'!B2

Of course this doesn't work, and I've tried SUM, SUM/INDIRECT, etc.
In
addition to the basic formula result, I'd like the anaylsis cell to
default
to "0" if there was no data to pull from for that day.

Your assistance or direction is helpful. It's a difficult topic to
search.






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
workbook/cell reference w/ formula waladd Excel Worksheet Functions 4 February 17th 07 03:16 PM
I have to change a bunch of formula that need to reference a different workbook. Marc Excel Worksheet Functions 5 July 19th 06 02:56 AM
Can references to cells be used as part of a workbook reference blackreugen Excel Discussion (Misc queries) 1 April 18th 06 08:01 PM
same date and set up on complete workbook ED New Users to Excel 3 April 17th 06 04:22 PM
Designating a workbook reference base on a cells contents PCLIVE Excel Worksheet Functions 2 December 23rd 05 04:54 PM


All times are GMT +1. The time now is 10:54 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"