Help With Formula Please

Get_Involved

Active Member
Joined
Jan 26, 2007
Messages
383
I am trying to combine this formula

Code:
=IFERROR(1/1*(IF(D32=1,'Hours Of Service'!E4,IF(D32=2,'Hours Of Service'!N4,"")*1)),"")

With this Formula

Code:
=INDEX(E11:E18454,MATCH(TRUE,(D10:D18454>='Pre Trip Bid Summary'!I24),0))*60

This is one of the several ways I have tried.
I have gotten two different answers, (1, and 60), the answer should be 720

Code:
=IFERROR(1/1,IF(D32=1,INDEX('Hours Of Service'!E11:E18454,MATCH(TRUE,('Hours Of Service'!D10:D18454>=I24),0))))

I know what cell to put it in, I just can't rework the formula the correctly.

Any help will be appreciated, Thank You.
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Try

=IFERROR(IF(D32=1,INDEX('Hours Of Service'!E11:E18454,MATCH(TRUE,('Hours Of Service'!D10:D18454>=I24),0))),1/1)

But I'm not sure what values are in the cells 'Pre Trip Bid Summary'!I24, 'Hours Of Service'!E11:E18454 and 'Hours Of Service'!D10:D18454.
 
Upvote 0
Thank You KolGuyXcel:

Works like a charm.
What my problem was The one you weren't sure about, was the single formula that worked with two cells doing the work.

in my workbook I have 7 separate loads, that I had to build 7 separate Hours Of Service tabs so that each load had its own Hours Of Service with different names Hours Of Service Load 1, Load 2, Ect.

Now I can do all 7 loads with 1 Hours Of Service Tab, this will make the workbook much faster.

I can't believe I explained the project right the first time.

Thank You Bunches.
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,848
Members
452,361
Latest member
d3ad3y3

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