shakethingsup
Board Regular
- Joined
- May 21, 2017
- Messages
- 64
- Office Version
- 365
- Platform
- Windows
Hello - I am frustrated. I spent a few hours today on this and thought I would find 1 resource to solve this but I found pieces of it. SO maybe I'm not searching the right term. I"m trying to understand the difference between a textbox vs a label, a 'userform'. I don't know what I actually need.
The easy part is creating the excel add-ins for the users. There will be 2 buttons installed for each user. A "prepare" and a "review"
The flow:
I have a staff who prepares an excel document.
Once complete, they will hit the prepare button.
They will send to me, I will review, I will hit the review button.
The output:
I want each of those outputs to be UNEDITABLE/LOCKED - this is the problem
The coding:
Set Prepare = ActiveSheet.Shapes.AddLabel(msoTextOrientationHorizontal, 180, 169, 131, 43)
Prepare.TextFrame.Characters.Text = "Prepared by:" & " " & Environ("Username") & " " & Format(Date, "dd-mm-yyyy")
Prepare.TextFrame.AutoSize = True
The problem:
I don't know how to lock this?
The easy part is creating the excel add-ins for the users. There will be 2 buttons installed for each user. A "prepare" and a "review"
The flow:
I have a staff who prepares an excel document.
Once complete, they will hit the prepare button.
They will send to me, I will review, I will hit the review button.
The output:
I want each of those outputs to be UNEDITABLE/LOCKED - this is the problem
The coding:
Set Prepare = ActiveSheet.Shapes.AddLabel(msoTextOrientationHorizontal, 180, 169, 131, 43)
Prepare.TextFrame.Characters.Text = "Prepared by:" & " " & Environ("Username") & " " & Format(Date, "dd-mm-yyyy")
Prepare.TextFrame.AutoSize = True
The problem:
I don't know how to lock this?
Last edited: