Formula Advice on how to Average a column

VBA learner ITG

Active Member
Joined
Apr 18, 2017
Messages
267
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
Hi Peers,

I have tried google and cannot find a solution to be able to average a column based on the below.

This is the formula in the cell which is how the below value in the column/cell is presented: =IFERROR(NETWORKDAYS.INTL(C3,D3)-1&" days "&TEXT(D3-C3,"h"" hrs ""m"" mins """),"")

Any advice appreciated?

1 days 4 hrs 26 mins
2 days 5 hrs 20 mins
0 days 0 hrs 0 mins
4 days 6 hrs 53 mins
3 days 21 hrs 26 mins
2 days 18 hrs 37 mins
2 days 18 hrs 39 mins
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
You can't perform mathematical operations on cells which contain text, you will need the numeric equivalents of the results in order to perform any additional calculations.

=NETWORKDAYS.INTL(C3,D3)-1+(D3-C3)
 
Upvote 0

Forum statistics

Threads
1,215,006
Messages
6,122,666
Members
449,091
Latest member
peppernaut

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top