Jump to content

Excel Formula Help!!


Matt R
 Share

Recommended Posts

Trying to make a spreadsheet at the moment to monitor incoming calls and time/date recieved.

Column A = Date/Time

Column B = Telephone Number

What I would like is when you type the phone number in Column B it puts the Date/Time in Column A next to it??

Anyone Help??

Link to comment
Share on other sites

[ QUOTE ]

Trying to make a spreadsheet at the moment to monitor incoming calls and time/date recieved.

Column A = Date/Time

Column B = Telephone Number

What I would like is when you type the phone number in Column B it puts the Date/Time in Column A next to it??

Anyone Help??

[/ QUOTE ]

not sure what you are asking here, but I assume you have a list of phone and date/time in another sheet and you want to query it thus... "ive a phone no, when did it get called (or called us)"

If so,

Use something like Vlookup.

Link to comment
Share on other sites

Ahh....

use the =now()

so use the formula (in col b) something like =if(A1>1, now(),"") Because the now fuction is within the "if" it may return a Deciamal date time value, in this case just convert it via the standard date/time functions. Problem is that =now() is recalculated each time the spreadsheet is changed.

There must be a way to do this, try google.

Link to comment
Share on other sites

Getting the exact time in column B is the easy bit use an IF formula so if column A isn't blank the current date/time is returned (which is another formula - NOW or something similar to under date/time functions - I'm trying to jog my memory via OpenOffice Calc).

So, something like =IF(A1<>"",NOW(),"") and then feed down column B, then formatting column B if necessary.

The bit I'm not sure on is how best to lock it so that it doesn't update itself once a value has been entered.

I know you can achieve this via cell/sheet protection but whether or not that's too mechanical (having to protect new cells every time you add a value) and whether or not it can be sorted via a macro I'm not sure/is up to you.

Beaten to it!!!

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...