I was unable to find
anything on after I looked. I might just not know the right
terminology to search for it, but I couldn't find anything up to now.
In the program for the call handling which you've all helped me with
before, I planning to use:
ActiveSheet.Protect UserInterfaceOnly:=True
to protect the cells from direct user interface, and that works fine.
However, the situation is that I set up the SelectionChange
event to fire only when the user clicked in the first column of the
sheet, because it make the offsets so easy to maintain
systematically--that is, I always knew that the point of beginning
was going to be Column A for whatever changes the input from the
userforms made. That way, it was only a matter of counting the
columns to locate the exact position of the data being changed.
So, I was wondering if I could change the error message that
pops up when an attempt is made to directly change a cell's contents
on a protected sheet, so as to remind all the users to always select
the call to be examined by clicking ONLY on the first column of the
row they want to evaluate (which then pops up the various user forms
for them to do that).
That allows me to filter all the input to reduce noise in the
data, and I've got that part working well.
So, does anyone know where I might look to find out how to
change an error message like that? . . . and if it's not possible to
change that error message, is there another way to remind all the
users to click only on the first column when they accidently attempt
to change the sheet directly?
Thanks for your help, and I'm still working on a good way to do
the logins that the group helped me with before--so, as soon as I
complete that, I'll let you all know how it turned out, since you
all were so helpful about it.