Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 14
Default Links to other worksheet not updated or showing #VALUE!

I have a formula linking to another worksheet but it does not show the result
unless I open that worksheet too. Any ideas? Please correct me if my formula
or excel settings is wrong.

=COUNTIFS('d:\[Outgoing List
2009.xlsm]Outgoing'!$J$2:$J$10000,$A33,'d:\[Outgoing List
2009.xlsm]Outgoing'!$T$2:$T$10000,"01/01/09")

When I tried a simple formula, it works fine.
=d:\[Outgoing List 2009.xlsm]Report'!$B3
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,389
Default Links to other worksheet not updated or showing #VALUE!

Your problem is that Excel does not recognize "01/01/09" as a date. It
thinks you are looking specifically for that text string. Do it this way:

=countifs(...,""&date(2009,1,1))

Regards,
Fred.

"jaysan3" wrote in message
...
I have a formula linking to another worksheet but it does not show the
result
unless I open that worksheet too. Any ideas? Please correct me if my
formula
or excel settings is wrong.

=COUNTIFS('d:\[Outgoing List
2009.xlsm]Outgoing'!$J$2:$J$10000,$A33,'d:\[Outgoing List
2009.xlsm]Outgoing'!$T$2:$T$10000,"01/01/09")

When I tried a simple formula, it works fine.
=d:\[Outgoing List 2009.xlsm]Report'!$B3


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Links to other worksheet not updated or showing #VALUE!

Unless you use an Add-In; these formulas will work only if all external data
sources are open.

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

I have a formula linking to another worksheet but it does not show the result
unless I open that worksheet too. Any ideas? Please correct me if my formula
or excel settings is wrong.

=COUNTIFS('d:\[Outgoing List
2009.xlsm]Outgoing'!$J$2:$J$10000,$A33,'d:\[Outgoing List
2009.xlsm]Outgoing'!$T$2:$T$10000,"01/01/09")

When I tried a simple formula, it works fine.
=d:\[Outgoing List 2009.xlsm]Report'!$B3

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 14
Default Links to other worksheet not updated or showing #VALUE!

Errrm... where & how do i use the Add-in?

"Jacob Skaria" wrote:

Unless you use an Add-In; these formulas will work only if all external data
sources are open.

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

I have a formula linking to another worksheet but it does not show the result
unless I open that worksheet too. Any ideas? Please correct me if my formula
or excel settings is wrong.

=COUNTIFS('d:\[Outgoing List
2009.xlsm]Outgoing'!$J$2:$J$10000,$A33,'d:\[Outgoing List
2009.xlsm]Outgoing'!$T$2:$T$10000,"01/01/09")

When I tried a simple formula, it works fine.
=d:\[Outgoing List 2009.xlsm]Report'!$B3

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 14
Default Links to other worksheet not updated or showing #VALUE!

Changing the date doesnt help.

My mistake, the links are in a different workbook, not worksheet as
mentioned earlier.


"Fred Smith" wrote:

Your problem is that Excel does not recognize "01/01/09" as a date. It
thinks you are looking specifically for that text string. Do it this way:

=countifs(...,""&date(2009,1,1))

Regards,
Fred.

"jaysan3" wrote in message
...
I have a formula linking to another worksheet but it does not show the
result
unless I open that worksheet too. Any ideas? Please correct me if my
formula
or excel settings is wrong.

=COUNTIFS('d:\[Outgoing List
2009.xlsm]Outgoing'!$J$2:$J$10000,$A33,'d:\[Outgoing List
2009.xlsm]Outgoing'!$T$2:$T$10000,"01/01/09")

When I tried a simple formula, it works fine.
=d:\[Outgoing List 2009.xlsm]Report'!$B3





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Links to other worksheet not updated or showing #VALUE!

Check out the below link...and download.

http://xcell05.free.fr/morefunc/english/index.htm

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Errrm... where & how do i use the Add-in?

"Jacob Skaria" wrote:

Unless you use an Add-In; these formulas will work only if all external data
sources are open.

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

I have a formula linking to another worksheet but it does not show the result
unless I open that worksheet too. Any ideas? Please correct me if my formula
or excel settings is wrong.

=COUNTIFS('d:\[Outgoing List
2009.xlsm]Outgoing'!$J$2:$J$10000,$A33,'d:\[Outgoing List
2009.xlsm]Outgoing'!$T$2:$T$10000,"01/01/09")

When I tried a simple formula, it works fine.
=d:\[Outgoing List 2009.xlsm]Report'!$B3

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 14
Default Links to other worksheet not updated or showing #VALUE!

Unable to download from site. Any other options?

"Jacob Skaria" wrote:

Check out the below link...and download.

http://xcell05.free.fr/morefunc/english/index.htm

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Errrm... where & how do i use the Add-in?

"Jacob Skaria" wrote:

Unless you use an Add-In; these formulas will work only if all external data
sources are open.

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

I have a formula linking to another worksheet but it does not show the result
unless I open that worksheet too. Any ideas? Please correct me if my formula
or excel settings is wrong.

=COUNTIFS('d:\[Outgoing List
2009.xlsm]Outgoing'!$J$2:$J$10000,$A33,'d:\[Outgoing List
2009.xlsm]Outgoing'!$T$2:$T$10000,"01/01/09")

When I tried a simple formula, it works fine.
=d:\[Outgoing List 2009.xlsm]Report'!$B3

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Links to other worksheet not updated or showing #VALUE!

Try the SUMPRODUCT() version of the formula and feedback

=SUMPRODUCT(--('D:\[Outgoing List 2009.xlsm]Outgoing'!$J$2:$J$10000=$A33),
--('D:\[Outgoing List 2009.xlsm]Outgoing'!$T$2:$T$10000DATE(2009,1,1)))


If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Unable to download from site. Any other options?

"Jacob Skaria" wrote:

Check out the below link...and download.

http://xcell05.free.fr/morefunc/english/index.htm

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Errrm... where & how do i use the Add-in?

"Jacob Skaria" wrote:

Unless you use an Add-In; these formulas will work only if all external data
sources are open.

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

I have a formula linking to another worksheet but it does not show the result
unless I open that worksheet too. Any ideas? Please correct me if my formula
or excel settings is wrong.

=COUNTIFS('d:\[Outgoing List
2009.xlsm]Outgoing'!$J$2:$J$10000,$A33,'d:\[Outgoing List
2009.xlsm]Outgoing'!$T$2:$T$10000,"01/01/09")

When I tried a simple formula, it works fine.
=d:\[Outgoing List 2009.xlsm]Report'!$B3

  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 14
Default Links to other worksheet not updated or showing #VALUE!

Thanks, Jacob.

The sumproduct does show updated data, but the value is different compared
to countif.

BTW, I also need to count data between a specified date and use averageifs
in the same way as well.

"Jacob Skaria" wrote:

Try the SUMPRODUCT() version of the formula and feedback

=SUMPRODUCT(--('D:\[Outgoing List 2009.xlsm]Outgoing'!$J$2:$J$10000=$A33),
--('D:\[Outgoing List 2009.xlsm]Outgoing'!$T$2:$T$10000DATE(2009,1,1)))


If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Unable to download from site. Any other options?

"Jacob Skaria" wrote:

Check out the below link...and download.

http://xcell05.free.fr/morefunc/english/index.htm

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Errrm... where & how do i use the Add-in?

"Jacob Skaria" wrote:

Unless you use an Add-In; these formulas will work only if all external data
sources are open.

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

I have a formula linking to another worksheet but it does not show the result
unless I open that worksheet too. Any ideas? Please correct me if my formula
or excel settings is wrong.

=COUNTIFS('d:\[Outgoing List
2009.xlsm]Outgoing'!$J$2:$J$10000,$A33,'d:\[Outgoing List
2009.xlsm]Outgoing'!$T$2:$T$10000,"01/01/09")

When I tried a simple formula, it works fine.
=d:\[Outgoing List 2009.xlsm]Report'!$B3

  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Links to other worksheet not updated or showing #VALUE!

'Try this in a sample workbook..

'You can add more conditions like
=SUMPRODUCT(--('D:\[Outgoing List 2009.xlsm]Outgoing'!$J$2:$J$10000=$A33),
--('D:\[Outgoing List 2009.xlsm]Outgoing'!$T$2:$T$10000=DATE(2009,1,1)),
--('D:\[Outgoing List 2009.xlsm]Outgoing'!$T$2:$T$10000<=DATE(2009,6,30)))

'You can also find the average..the below way. The below will average the
values in column B if the values in the corresponding colA = "a"
'=AVERAGE(IF('C:\[extTest.xls]Sheet1'!$A$1:$A$100="a",'C:\[extTest.xls]Sheet1'!$B$1:$B$100))

'PS: I am currently using 2003 and so cannot try out the same in 2007 .

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Thanks, Jacob.

The sumproduct does show updated data, but the value is different compared
to countif.

BTW, I also need to count data between a specified date and use averageifs
in the same way as well.

"Jacob Skaria" wrote:

Try the SUMPRODUCT() version of the formula and feedback

=SUMPRODUCT(--('D:\[Outgoing List 2009.xlsm]Outgoing'!$J$2:$J$10000=$A33),
--('D:\[Outgoing List 2009.xlsm]Outgoing'!$T$2:$T$10000DATE(2009,1,1)))


If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Unable to download from site. Any other options?

"Jacob Skaria" wrote:

Check out the below link...and download.

http://xcell05.free.fr/morefunc/english/index.htm

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Errrm... where & how do i use the Add-in?

"Jacob Skaria" wrote:

Unless you use an Add-In; these formulas will work only if all external data
sources are open.

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

I have a formula linking to another worksheet but it does not show the result
unless I open that worksheet too. Any ideas? Please correct me if my formula
or excel settings is wrong.

=COUNTIFS('d:\[Outgoing List
2009.xlsm]Outgoing'!$J$2:$J$10000,$A33,'d:\[Outgoing List
2009.xlsm]Outgoing'!$T$2:$T$10000,"01/01/09")

When I tried a simple formula, it works fine.
=d:\[Outgoing List 2009.xlsm]Report'!$B3



  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 14
Default Links to other worksheet not updated or showing #VALUE!

Ahh I see. Anyway, the results does not come up the same if i use sumproduct
in your 1st example. Any idea?

Also, what does the '--' mean?

"Jacob Skaria" wrote:

'Try this in a sample workbook..

'You can add more conditions like
=SUMPRODUCT(--('D:\[Outgoing List 2009.xlsm]Outgoing'!$J$2:$J$10000=$A33),
--('D:\[Outgoing List 2009.xlsm]Outgoing'!$T$2:$T$10000=DATE(2009,1,1)),
--('D:\[Outgoing List 2009.xlsm]Outgoing'!$T$2:$T$10000<=DATE(2009,6,30)))

'You can also find the average..the below way. The below will average the
values in column B if the values in the corresponding colA = "a"
'=AVERAGE(IF('C:\[extTest.xls]Sheet1'!$A$1:$A$100="a",'C:\[extTest.xls]Sheet1'!$B$1:$B$100))

'PS: I am currently using 2003 and so cannot try out the same in 2007 .

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Thanks, Jacob.

The sumproduct does show updated data, but the value is different compared
to countif.

BTW, I also need to count data between a specified date and use averageifs
in the same way as well.

"Jacob Skaria" wrote:

Try the SUMPRODUCT() version of the formula and feedback

=SUMPRODUCT(--('D:\[Outgoing List 2009.xlsm]Outgoing'!$J$2:$J$10000=$A33),
--('D:\[Outgoing List 2009.xlsm]Outgoing'!$T$2:$T$10000DATE(2009,1,1)))


If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Unable to download from site. Any other options?

"Jacob Skaria" wrote:

Check out the below link...and download.

http://xcell05.free.fr/morefunc/english/index.htm

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Errrm... where & how do i use the Add-in?

"Jacob Skaria" wrote:

Unless you use an Add-In; these formulas will work only if all external data
sources are open.

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

I have a formula linking to another worksheet but it does not show the result
unless I open that worksheet too. Any ideas? Please correct me if my formula
or excel settings is wrong.

=COUNTIFS('d:\[Outgoing List
2009.xlsm]Outgoing'!$J$2:$J$10000,$A33,'d:\[Outgoing List
2009.xlsm]Outgoing'!$T$2:$T$10000,"01/01/09")

When I tried a simple formula, it works fine.
=d:\[Outgoing List 2009.xlsm]Report'!$B3

  #12   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Links to other worksheet not updated or showing #VALUE!

Are you sure..As mentioned in my previous post have you tried this with a
fresh sample...(probably with a smaller piece of data)

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Ahh I see. Anyway, the results does not come up the same if i use sumproduct
in your 1st example. Any idea?

Also, what does the '--' mean?

"Jacob Skaria" wrote:

'Try this in a sample workbook..

'You can add more conditions like
=SUMPRODUCT(--('D:\[Outgoing List 2009.xlsm]Outgoing'!$J$2:$J$10000=$A33),
--('D:\[Outgoing List 2009.xlsm]Outgoing'!$T$2:$T$10000=DATE(2009,1,1)),
--('D:\[Outgoing List 2009.xlsm]Outgoing'!$T$2:$T$10000<=DATE(2009,6,30)))

'You can also find the average..the below way. The below will average the
values in column B if the values in the corresponding colA = "a"
'=AVERAGE(IF('C:\[extTest.xls]Sheet1'!$A$1:$A$100="a",'C:\[extTest.xls]Sheet1'!$B$1:$B$100))

'PS: I am currently using 2003 and so cannot try out the same in 2007 .

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Thanks, Jacob.

The sumproduct does show updated data, but the value is different compared
to countif.

BTW, I also need to count data between a specified date and use averageifs
in the same way as well.

"Jacob Skaria" wrote:

Try the SUMPRODUCT() version of the formula and feedback

=SUMPRODUCT(--('D:\[Outgoing List 2009.xlsm]Outgoing'!$J$2:$J$10000=$A33),
--('D:\[Outgoing List 2009.xlsm]Outgoing'!$T$2:$T$10000DATE(2009,1,1)))


If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Unable to download from site. Any other options?

"Jacob Skaria" wrote:

Check out the below link...and download.

http://xcell05.free.fr/morefunc/english/index.htm

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Errrm... where & how do i use the Add-in?

"Jacob Skaria" wrote:

Unless you use an Add-In; these formulas will work only if all external data
sources are open.

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

I have a formula linking to another worksheet but it does not show the result
unless I open that worksheet too. Any ideas? Please correct me if my formula
or excel settings is wrong.

=COUNTIFS('d:\[Outgoing List
2009.xlsm]Outgoing'!$J$2:$J$10000,$A33,'d:\[Outgoing List
2009.xlsm]Outgoing'!$T$2:$T$10000,"01/01/09")

When I tried a simple formula, it works fine.
=d:\[Outgoing List 2009.xlsm]Report'!$B3

  #13   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 14
Default Links to other worksheet not updated or showing #VALUE!

I have checked the raw data & found the discrepency. In the date column,
there are a few entries which are 'rejected' or 'cancelled' and are still
calculated when using DATE function.

"Jacob Skaria" wrote:

Are you sure..As mentioned in my previous post have you tried this with a
fresh sample...(probably with a smaller piece of data)

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Ahh I see. Anyway, the results does not come up the same if i use sumproduct
in your 1st example. Any idea?

Also, what does the '--' mean?

"Jacob Skaria" wrote:

'Try this in a sample workbook..

'You can add more conditions like
=SUMPRODUCT(--('D:\[Outgoing List 2009.xlsm]Outgoing'!$J$2:$J$10000=$A33),
--('D:\[Outgoing List 2009.xlsm]Outgoing'!$T$2:$T$10000=DATE(2009,1,1)),
--('D:\[Outgoing List 2009.xlsm]Outgoing'!$T$2:$T$10000<=DATE(2009,6,30)))

'You can also find the average..the below way. The below will average the
values in column B if the values in the corresponding colA = "a"
'=AVERAGE(IF('C:\[extTest.xls]Sheet1'!$A$1:$A$100="a",'C:\[extTest.xls]Sheet1'!$B$1:$B$100))

'PS: I am currently using 2003 and so cannot try out the same in 2007 .

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Thanks, Jacob.

The sumproduct does show updated data, but the value is different compared
to countif.

BTW, I also need to count data between a specified date and use averageifs
in the same way as well.

"Jacob Skaria" wrote:

Try the SUMPRODUCT() version of the formula and feedback

=SUMPRODUCT(--('D:\[Outgoing List 2009.xlsm]Outgoing'!$J$2:$J$10000=$A33),
--('D:\[Outgoing List 2009.xlsm]Outgoing'!$T$2:$T$10000DATE(2009,1,1)))


If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Unable to download from site. Any other options?

"Jacob Skaria" wrote:

Check out the below link...and download.

http://xcell05.free.fr/morefunc/english/index.htm

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Errrm... where & how do i use the Add-in?

"Jacob Skaria" wrote:

Unless you use an Add-In; these formulas will work only if all external data
sources are open.

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

I have a formula linking to another worksheet but it does not show the result
unless I open that worksheet too. Any ideas? Please correct me if my formula
or excel settings is wrong.

=COUNTIFS('d:\[Outgoing List
2009.xlsm]Outgoing'!$J$2:$J$10000,$A33,'d:\[Outgoing List
2009.xlsm]Outgoing'!$T$2:$T$10000,"01/01/09")

When I tried a simple formula, it works fine.
=d:\[Outgoing List 2009.xlsm]Report'!$B3

  #14   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Links to other worksheet not updated or showing #VALUE!

OK. Post sample data may be 10 row of data with 2 or 3 columns,,and let us
work on that. Post the formula you have tried, actual results and the
expected results

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

I have checked the raw data & found the discrepency. In the date column,
there are a few entries which are 'rejected' or 'cancelled' and are still
calculated when using DATE function.

"Jacob Skaria" wrote:

Are you sure..As mentioned in my previous post have you tried this with a
fresh sample...(probably with a smaller piece of data)

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Ahh I see. Anyway, the results does not come up the same if i use sumproduct
in your 1st example. Any idea?

Also, what does the '--' mean?

"Jacob Skaria" wrote:

'Try this in a sample workbook..

'You can add more conditions like
=SUMPRODUCT(--('D:\[Outgoing List 2009.xlsm]Outgoing'!$J$2:$J$10000=$A33),
--('D:\[Outgoing List 2009.xlsm]Outgoing'!$T$2:$T$10000=DATE(2009,1,1)),
--('D:\[Outgoing List 2009.xlsm]Outgoing'!$T$2:$T$10000<=DATE(2009,6,30)))

'You can also find the average..the below way. The below will average the
values in column B if the values in the corresponding colA = "a"
'=AVERAGE(IF('C:\[extTest.xls]Sheet1'!$A$1:$A$100="a",'C:\[extTest.xls]Sheet1'!$B$1:$B$100))

'PS: I am currently using 2003 and so cannot try out the same in 2007 .

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Thanks, Jacob.

The sumproduct does show updated data, but the value is different compared
to countif.

BTW, I also need to count data between a specified date and use averageifs
in the same way as well.

"Jacob Skaria" wrote:

Try the SUMPRODUCT() version of the formula and feedback

=SUMPRODUCT(--('D:\[Outgoing List 2009.xlsm]Outgoing'!$J$2:$J$10000=$A33),
--('D:\[Outgoing List 2009.xlsm]Outgoing'!$T$2:$T$10000DATE(2009,1,1)))


If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Unable to download from site. Any other options?

"Jacob Skaria" wrote:

Check out the below link...and download.

http://xcell05.free.fr/morefunc/english/index.htm

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

Errrm... where & how do i use the Add-in?

"Jacob Skaria" wrote:

Unless you use an Add-In; these formulas will work only if all external data
sources are open.

If this post helps click Yes
---------------
Jacob Skaria


"jaysan3" wrote:

I have a formula linking to another worksheet but it does not show the result
unless I open that worksheet too. Any ideas? Please correct me if my formula
or excel settings is wrong.

=COUNTIFS('d:\[Outgoing List
2009.xlsm]Outgoing'!$J$2:$J$10000,$A33,'d:\[Outgoing List
2009.xlsm]Outgoing'!$T$2:$T$10000,"01/01/09")

When I tried a simple formula, it works fine.
=d:\[Outgoing List 2009.xlsm]Report'!$B3

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
Showing when a file was updated Mikey B Excel Discussion (Misc queries) 2 May 9th 08 01:49 AM
This worksheet contains links that cannot be updated Bruce Excel Discussion (Misc queries) 4 January 31st 08 04:43 PM
Links not updated when primary worksheet is sorted Susi Farmer Excel Worksheet Functions 4 June 25th 07 09:26 PM
Showing Updated Cells [email protected] Excel Discussion (Misc queries) 0 June 22nd 06 08:49 PM
Links not showing updated value Wanson Excel Discussion (Misc queries) 2 December 8th 05 02:50 PM


All times are GMT +1. The time now is 05:35 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"