Combining time value, adding % + actual time as a result

lokocek

New Member
Joined
Jan 9, 2019
Messages
1
Hello everyone,

A I am not an Excel expert and I would really appreciate your help.

1. What I need to do is to combine few values in one box. It should contain sum of times from previous boxes/columns plus additional values.
So for example: Box A: 3h30mins --> Box B: Time from box A + 20% (result should be 4h12min) --> Box C: Time from box B + 90minutes (5h42mins as a result) --> Box D: 7am + Time from box C (actual time as a result. For example: 12:42 PM).


I know it might look complicated but I tried to explain it as clear as I can. Could anyone please help. Is that even possible in Excel?
My goal is to have a spreadsheet where after typing value in column A I will get results in all other columns.
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Enter time in A1 as hh:mm, ie 03:30, NOT 3h30mins

in B1
=IF(A1<>0,A1*120%<"")

in C1
=IF(A1<>0,B1+TIMEVALUE("01:30:00","")

in D1
=IF(A1<>0,TIMEVALUE("07:00:00")+C1,"")

Format all cells as hh:mm
copy the cells down the page for however many times you are going to enter in column A.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,968
Messages
6,122,506
Members
449,089
Latest member
RandomExceller01

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