Customer Sign In---Where To Start

amsdowns

Board Regular
Joined
Dec 29, 2008
Messages
73
Hey guys,

The challenge of the day is to create a customer sign in log using excel....not access.

Basically, customers come in, see the computer, sign in, press enter or submit, and the information is then sent to three computers. The staff then simply sees whos next and calls them up.

Now there's plenty of software out there that can do this....but i want excel to.

Basic question: Where do I start?

Thanks in advance!
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Question would be first of all, do you want them to log in within Excel or as they switch the computer on? If computer you need to look at API information I believe.

If excel then this is possible by using a personal workbook macro.
 
Upvote 0
The staff can start the computer up in the morning and open the excel file. Then when the customers start coming in, it'll already be up and ready for them.
 
Upvote 0
So its a specific workbook that they are opening?

You can create a log sheet and then with the workbook event on open it can log there details and date time etc, then you can send emails to who ever based on todays date in a cell.

Open a new Workbook and then use Alt + F11 to go into VBA, then on left look at the top for the workbook and sheets and below the sheet names you will see thisworkbook. Double click here, then at the top select Object and change to workbook. You then have the workbook event for Open.

Then add this code
<font face=Courier New><SPAN style="color:#00007F">Private</SPAN> <SPAN style="color:#00007F">Sub</SPAN> Workbook_Open()<br>Application.ScreenUpdating = <SPAN style="color:#00007F">False</SPAN><br>Sheets("Log").Activate<br>Range("A2").Select<br><SPAN style="color:#00007F">Do</SPAN> <SPAN style="color:#00007F">Until</SPAN> ActiveCell.Value = ""<br>ActiveCell.Offset(1, 0).Select<br><SPAN style="color:#00007F">Loop</SPAN><br>ActiveCell.Value = Environ("UserName")<br>ActiveCell.Offset(0, 1) = <SPAN style="color:#00007F">Date</SPAN><br>ActiveCell.Offset(0, 2) = Time<br>Application.ScreenUpdating = <SPAN style="color:#00007F">True</SPAN><br><br><br><SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN><br></FONT>
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,618
Messages
6,179,917
Members
452,949
Latest member
beartooth91

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