Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
RUSH2CROCHET
 
Posts: n/a
Default Calculate elapsed working days

Hello everyone:

I have a worksheet of order transactions which my group processes. I would
like to determine for FTR's the
# of work days elapsed between Fax Date & Approval Date.

Column A represents the type of transaction (FTR, Purchase, Rental,etc.)
Column Q is Fax Date
Column U is Approval Date

I have placed the following in Column AC:

=IF(A:A="FTR",DAYS360(Q:Q,U:U))

This works fine, yet when I put NetworkDays in place of Days360, it returns
#NUM!

Can someone please give me guidance? All help appreciated!

TIA,
Sandi
  #2   Report Post  
Posted to microsoft.public.excel.misc
 
Posts: n/a
Default Calculate elapsed working days

Hi

I think NETWORKDAYS is part of the Analysis toolpak, so make sure that is
loaded in Tools/Add-ins.

Andy.

"RUSH2CROCHET" wrote in message
...
Hello everyone:

I have a worksheet of order transactions which my group processes. I
would
like to determine for FTR's the
# of work days elapsed between Fax Date & Approval Date.

Column A represents the type of transaction (FTR, Purchase, Rental,etc.)
Column Q is Fax Date
Column U is Approval Date

I have placed the following in Column AC:

=IF(A:A="FTR",DAYS360(Q:Q,U:U))

This works fine, yet when I put NetworkDays in place of Days360, it
returns
#NUM!

Can someone please give me guidance? All help appreciated!

TIA,
Sandi



  #3   Report Post  
Posted to microsoft.public.excel.misc
RUSH2CROCHET
 
Posts: n/a
Default Calculate elapsed working days

Andy:

My analysis toolpak is loaded.... What next?

Sandi

"Andy" wrote:

Hi

I think NETWORKDAYS is part of the Analysis toolpak, so make sure that is
loaded in Tools/Add-ins.

Andy.

"RUSH2CROCHET" wrote in message
...
Hello everyone:

I have a worksheet of order transactions which my group processes. I
would
like to determine for FTR's the
# of work days elapsed between Fax Date & Approval Date.

Column A represents the type of transaction (FTR, Purchase, Rental,etc.)
Column Q is Fax Date
Column U is Approval Date

I have placed the following in Column AC:

=IF(A:A="FTR",DAYS360(Q:Q,U:U))

This works fine, yet when I put NetworkDays in place of Days360, it
returns
#NUM!

Can someone please give me guidance? All help appreciated!

TIA,
Sandi




  #4   Report Post  
Posted to microsoft.public.excel.misc
 
Posts: n/a
Default Calculate elapsed working days

What are you trying to achieve? Are you wanting a resul for each cell, or
the whole column at once?
If it's for each cell, use this in AC2
=IF(A2="FTR",NETWORKDAYS(Q2,U2))
and fill it down the column.

Hope this helps.
Andy.

"RUSH2CROCHET" wrote in message
...
Andy:

My analysis toolpak is loaded.... What next?

Sandi

"Andy" wrote:

Hi

I think NETWORKDAYS is part of the Analysis toolpak, so make sure that is
loaded in Tools/Add-ins.

Andy.

"RUSH2CROCHET" wrote in message
...
Hello everyone:

I have a worksheet of order transactions which my group processes. I
would
like to determine for FTR's the
# of work days elapsed between Fax Date & Approval Date.

Column A represents the type of transaction (FTR, Purchase,
Rental,etc.)
Column Q is Fax Date
Column U is Approval Date

I have placed the following in Column AC:

=IF(A:A="FTR",DAYS360(Q:Q,U:U))

This works fine, yet when I put NetworkDays in place of Days360, it
returns
#NUM!

Can someone please give me guidance? All help appreciated!

TIA,
Sandi






  #5   Report Post  
Posted to microsoft.public.excel.misc
daddylonglegs
 
Posts: n/a
Default Calculate elapsed working days


are you actually using

=IF(A:A="FTR",NETWORKDAYS(Q:Q,U:U))?

make it row specific, i.e. in row 2

=IF(A2="FTR",NETWORKDAYS(Q2,U2),"")

and copy down


--
daddylonglegs
------------------------------------------------------------------------
daddylonglegs's Profile: http://www.excelforum.com/member.php...o&userid=30486
View this thread: http://www.excelforum.com/showthread...hreadid=520729



  #6   Report Post  
Posted to microsoft.public.excel.misc
RUSH2CROCHET
 
Posts: n/a
Default Calculate elapsed working days

Andy:

Thanks so much for pointing out the error of my ways. I was trying to calc
the whole column at once, when what I really needed to do, was to calculate
each row individually, then do my averaging.

Thanks again for all your help!
Sandi ;-)

"Andy" wrote:

What are you trying to achieve? Are you wanting a resul for each cell, or
the whole column at once?
If it's for each cell, use this in AC2
=IF(A2="FTR",NETWORKDAYS(Q2,U2))
and fill it down the column.

Hope this helps.
Andy.

"RUSH2CROCHET" wrote in message
...
Andy:

My analysis toolpak is loaded.... What next?

Sandi

"Andy" wrote:

Hi

I think NETWORKDAYS is part of the Analysis toolpak, so make sure that is
loaded in Tools/Add-ins.

Andy.

"RUSH2CROCHET" wrote in message
...
Hello everyone:

I have a worksheet of order transactions which my group processes. I
would
like to determine for FTR's the
# of work days elapsed between Fax Date & Approval Date.

Column A represents the type of transaction (FTR, Purchase,
Rental,etc.)
Column Q is Fax Date
Column U is Approval Date

I have placed the following in Column AC:

=IF(A:A="FTR",DAYS360(Q:Q,U:U))

This works fine, yet when I put NetworkDays in place of Days360, it
returns
#NUM!

Can someone please give me guidance? All help appreciated!

TIA,
Sandi






  #7   Report Post  
Posted to microsoft.public.excel.misc
 
Posts: n/a
Default Calculate elapsed working days

It was a pleasure! Thanks for the feedback!

Andy.

"RUSH2CROCHET" wrote in message
...
Andy:

Thanks so much for pointing out the error of my ways. I was trying to calc
the whole column at once, when what I really needed to do, was to
calculate
each row individually, then do my averaging.

Thanks again for all your help!
Sandi ;-)

"Andy" wrote:

What are you trying to achieve? Are you wanting a resul for each cell, or
the whole column at once?
If it's for each cell, use this in AC2
=IF(A2="FTR",NETWORKDAYS(Q2,U2))
and fill it down the column.

Hope this helps.
Andy.

"RUSH2CROCHET" wrote in message
...
Andy:

My analysis toolpak is loaded.... What next?

Sandi

"Andy" wrote:

Hi

I think NETWORKDAYS is part of the Analysis toolpak, so make sure that
is
loaded in Tools/Add-ins.

Andy.

"RUSH2CROCHET" wrote in
message
...
Hello everyone:

I have a worksheet of order transactions which my group processes.
I
would
like to determine for FTR's the
# of work days elapsed between Fax Date & Approval Date.

Column A represents the type of transaction (FTR, Purchase,
Rental,etc.)
Column Q is Fax Date
Column U is Approval Date

I have placed the following in Column AC:

=IF(A:A="FTR",DAYS360(Q:Q,U:U))

This works fine, yet when I put NetworkDays in place of Days360, it
returns
#NUM!

Can someone please give me guidance? All help appreciated!

TIA,
Sandi








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
Add on 8 working days to a date Shirley Munro Excel Worksheet Functions 2 March 9th 06 02:57 PM
calculate the number of days from date received Donna Excel Worksheet Functions 7 July 18th 05 07:00 PM
Function to calculate the number of years, months and days between Vicky Excel Worksheet Functions 2 July 15th 05 04:27 AM
Calculate running target by days in the month Robert Excel Worksheet Functions 2 July 4th 05 06:14 AM
how do I calculate the days between dates? stucklady! Excel Discussion (Misc queries) 7 February 12th 05 04:39 PM


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