Enter two values solve for third

srcera

Board Regular
Joined
May 22, 2006
Messages
95
Good Day,

I'm trying to design a timecard worksheet which will allow me to enter in two of the following pieces of information and then automatically solve for the remaining value.

Shift start
Time worked
Shift end

Anyway I could do this without a macro?

Thanks!
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Not really, if you are entering values directly into a cell, you would be overwriting any formulae
 
Upvote 0
You could do it indirectly, without VBA.

For example, let's say you input the start time, hours worked, and end time into A1, B1 and C1.

Use helper cells to calculate the required values.

For example in A2
Code:
=if(A1="",+C1-B1,A1)

and so on for B2 and C2.
 
Upvote 0

Forum statistics

Threads
1,213,534
Messages
6,114,186
Members
448,554
Latest member
Gleisner2

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