Can Excel be used as an active database that is un-editable

glenray

New Member
Joined
Feb 7, 2024
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I need to make a database (Work Log) that after an entry is made, a macro can enter the record, protect it and ready the database for the next record.

Can that be done with VBA?
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
You can hide a sheet so that a user cannot see it all all. You can have a macro add an entry to that sheet. And then you can lock the VBA project so that users cannot use your code to unhide it. There are ways to thwart this, but most cannot. You could also protect the sheet and have the macro unlock it to add an entry.

Sub HideSheet()
Dim Sht As Worksheet
Set Sht = Sheets("Sheets3")
Sht.Visible = xlSheetVeryHidden
End Sub
 
Upvote 0
I make data entry screens. When an entry is entered, it is visible in a table below. The user can choose that record again, edit, and save again.
 
Upvote 0
Each tab has just over 1.4 million rows ... each row can hold a single record of data. How many records do you perceive a single tab
will hold ?
 
Upvote 0

Forum statistics

Threads
1,215,139
Messages
6,123,264
Members
449,093
Latest member
Vincent Khandagale

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