Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 95
Default Links work in one workbook, not in another

I'm using the following formula in two different workbooks:

=IF(F4=1,VLOOKUP(D4,'S:\payroll folder\[vacation
info.xls]Summary'!$B$3:$F$110,5,FALSE),VLOOKUP(D4,'S:\payro ll folder\[more
vacation info.xls]Summary'!$B$4:$F$103,5,FALSE))

It is entered exactly the same way in both workbooks, but only works from
one. Note: For security reasons I changed the name of the folder and .xls
file.

In the second workbook, I get an #N/A error. In both workbooks, F4=1 and
D4=173010. The "vacation info" sheets are sorted by employee number (D4).

Any ideas?
--
Adios,
Clay Harryman
  #2   Report Post  
Posted to microsoft.public.excel.misc
bj bj is offline
external usenet poster
 
Posts: 1,397
Default Links work in one workbook, not in another

in your second workbook, what do you get with =F4=D4?
depending on how they are generated, they might not really be identical
Are they text or numeric?

"Clayman" wrote:

I'm using the following formula in two different workbooks:

=IF(F4=1,VLOOKUP(D4,'S:\payroll folder\[vacation
info.xls]Summary'!$B$3:$F$110,5,FALSE),VLOOKUP(D4,'S:\payro ll folder\[more
vacation info.xls]Summary'!$B$4:$F$103,5,FALSE))

It is entered exactly the same way in both workbooks, but only works from
one. Note: For security reasons I changed the name of the folder and .xls
file.

In the second workbook, I get an #N/A error. In both workbooks, F4=1 and
D4=173010. The "vacation info" sheets are sorted by employee number (D4).

Any ideas?
--
Adios,
Clay Harryman

  #3   Report Post  
Posted to microsoft.public.excel.misc
bj bj is offline
external usenet poster
 
Posts: 1,397
Default Links work in one workbook, not in another

I thought I had answered this one, but don't see it now
what do you get when you enter =[book1]sheet1!D4=[book2]sheet1!D4
and samething for F4
they may llok alike but not really be alike

"Clayman" wrote:

I'm using the following formula in two different workbooks:

=IF(F4=1,VLOOKUP(D4,'S:\payroll folder\[vacation
info.xls]Summary'!$B$3:$F$110,5,FALSE),VLOOKUP(D4,'S:\payro ll folder\[more
vacation info.xls]Summary'!$B$4:$F$103,5,FALSE))

It is entered exactly the same way in both workbooks, but only works from
one. Note: For security reasons I changed the name of the folder and .xls
file.

In the second workbook, I get an #N/A error. In both workbooks, F4=1 and
D4=173010. The "vacation info" sheets are sorted by employee number (D4).

Any ideas?
--
Adios,
Clay Harryman

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 95
Default Links work in one workbook, not in another

ARGH!!!!

Yeah - that's it. One's text, the other's numeric. Thanks for the tip!

Man - getting data from "unschooled" sources... One data source is payroll,
the other data source is field supervisors. Payroll's is numeric, Supervisors
are text.
--
Adios,
Clay Harryman


"bj" wrote:

I thought I had answered this one, but don't see it now
what do you get when you enter =[book1]sheet1!D4=[book2]sheet1!D4
and samething for F4
they may llok alike but not really be alike

"Clayman" wrote:

I'm using the following formula in two different workbooks:

=IF(F4=1,VLOOKUP(D4,'S:\payroll folder\[vacation
info.xls]Summary'!$B$3:$F$110,5,FALSE),VLOOKUP(D4,'S:\payro ll folder\[more
vacation info.xls]Summary'!$B$4:$F$103,5,FALSE))

It is entered exactly the same way in both workbooks, but only works from
one. Note: For security reasons I changed the name of the folder and .xls
file.

In the second workbook, I get an #N/A error. In both workbooks, F4=1 and
D4=173010. The "vacation info" sheets are sorted by employee number (D4).

Any ideas?
--
Adios,
Clay Harryman

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 95
Default Links work in one workbook, not in another

heh - easy solution without reformatting everything:
=if(or(f4=1,f4="1")...
vlookup(value(d4)...

I think I'll become anti-technology and live in a cave...
--
Adios,
Clay Harryman


"Clayman" wrote:

ARGH!!!!

Yeah - that's it. One's text, the other's numeric. Thanks for the tip!

Man - getting data from "unschooled" sources... One data source is payroll,
the other data source is field supervisors. Payroll's is numeric, Supervisors
are text.
--
Adios,
Clay Harryman


"bj" wrote:

I thought I had answered this one, but don't see it now
what do you get when you enter =[book1]sheet1!D4=[book2]sheet1!D4
and samething for F4
they may llok alike but not really be alike

"Clayman" wrote:

I'm using the following formula in two different workbooks:

=IF(F4=1,VLOOKUP(D4,'S:\payroll folder\[vacation
info.xls]Summary'!$B$3:$F$110,5,FALSE),VLOOKUP(D4,'S:\payro ll folder\[more
vacation info.xls]Summary'!$B$4:$F$103,5,FALSE))

It is entered exactly the same way in both workbooks, but only works from
one. Note: For security reasons I changed the name of the folder and .xls
file.

In the second workbook, I get an #N/A error. In both workbooks, F4=1 and
D4=173010. The "vacation info" sheets are sorted by employee number (D4).

Any ideas?
--
Adios,
Clay Harryman



  #6   Report Post  
Posted to microsoft.public.excel.misc
bj bj is offline
external usenet poster
 
Posts: 1,397
Default Links work in one workbook, not in another

If(or(cave is dry,cave is wet))

"Clayman" wrote:

heh - easy solution without reformatting everything:
=if(or(f4=1,f4="1")...
vlookup(value(d4)...

I think I'll become anti-technology and live in a cave...
--
Adios,
Clay Harryman


"Clayman" wrote:

ARGH!!!!

Yeah - that's it. One's text, the other's numeric. Thanks for the tip!

Man - getting data from "unschooled" sources... One data source is payroll,
the other data source is field supervisors. Payroll's is numeric, Supervisors
are text.
--
Adios,
Clay Harryman


"bj" wrote:

I thought I had answered this one, but don't see it now
what do you get when you enter =[book1]sheet1!D4=[book2]sheet1!D4
and samething for F4
they may llok alike but not really be alike

"Clayman" wrote:

I'm using the following formula in two different workbooks:

=IF(F4=1,VLOOKUP(D4,'S:\payroll folder\[vacation
info.xls]Summary'!$B$3:$F$110,5,FALSE),VLOOKUP(D4,'S:\payro ll folder\[more
vacation info.xls]Summary'!$B$4:$F$103,5,FALSE))

It is entered exactly the same way in both workbooks, but only works from
one. Note: For security reasons I changed the name of the folder and .xls
file.

In the second workbook, I get an #N/A error. In both workbooks, F4=1 and
D4=173010. The "vacation info" sheets are sorted by employee number (D4).

Any ideas?
--
Adios,
Clay Harryman

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 95
Default Links work in one workbook, not in another

Cave is fairly dry - but there's this squeaking noise from the back...
--
Adios,
Clay Harryman


"bj" wrote:

If(or(cave is dry,cave is wet))

"Clayman" wrote:

heh - easy solution without reformatting everything:
=if(or(f4=1,f4="1")...
vlookup(value(d4)...

I think I'll become anti-technology and live in a cave...
--
Adios,
Clay Harryman


"Clayman" wrote:

ARGH!!!!

Yeah - that's it. One's text, the other's numeric. Thanks for the tip!

Man - getting data from "unschooled" sources... One data source is payroll,
the other data source is field supervisors. Payroll's is numeric, Supervisors
are text.
--
Adios,
Clay Harryman


"bj" wrote:

I thought I had answered this one, but don't see it now
what do you get when you enter =[book1]sheet1!D4=[book2]sheet1!D4
and samething for F4
they may llok alike but not really be alike

"Clayman" wrote:

I'm using the following formula in two different workbooks:

=IF(F4=1,VLOOKUP(D4,'S:\payroll folder\[vacation
info.xls]Summary'!$B$3:$F$110,5,FALSE),VLOOKUP(D4,'S:\payro ll folder\[more
vacation info.xls]Summary'!$B$4:$F$103,5,FALSE))

It is entered exactly the same way in both workbooks, but only works from
one. Note: For security reasons I changed the name of the folder and .xls
file.

In the second workbook, I get an #N/A error. In both workbooks, F4=1 and
D4=173010. The "vacation info" sheets are sorted by employee number (D4).

Any ideas?
--
Adios,
Clay Harryman

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
My workbook links are not updating (its 30,000 KB size workbook). rselena Excel Discussion (Misc queries) 1 August 14th 06 09:14 PM
My links to another workbook don't work Tony M Excel Discussion (Misc queries) 2 May 16th 06 04:57 PM
DO NOT update links doesn't work for me. Hal Excel Discussion (Misc queries) 8 April 18th 06 12:15 AM
links within excel don't work when workbook is e-mailed - why ? E. Nufizinuf Excel Discussion (Misc queries) 1 December 13th 05 04:00 AM
My links no longer work . . . mike Excel Discussion (Misc queries) 8 October 27th 05 11:59 PM


All times are GMT +1. The time now is 03:53 PM.

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

About Us

"It's about Microsoft Excel"