CRM Notes For Printing
CRM Notes For Printing
For example:
Criteria for Grade
% of Quota Grade
0% F
60% D
70% C
80% B
90% A
Create Grade Column next to %Quota and click on the cell below it → Formulas →
Insert Function.
%Quota Grade
62.50% D
94.55% A
Lab 3
To display UserForm, on the button you click on, Enter the code UserForm1.Show
To send data to Worksheet for Storage (E.g. Customer Sales Data) → Activate the
sheet that you want to send to first. → Worksheets(“CustomersInfo”).Activate
IF Function works like this: IF [optYes(as an example)] Then ……. End If.
To clear the controls for next entry and set focus to Name→ txtName.Text = “”……..
then txtName.SetFocus
To make sure UserForm close after you click close → Use the following code
Unload UserForm1 and then set main worksheet to be visible →
Worksheets(“Main”).Visible = True
Important for Lab 3 Combo Boxes
For I = 1 To 31
ComboBox1.AddItem(I)
Next I
To Display Months:
ComboBox2.AddItem(“Jan”)
To ensure textbooks does not move or size with cells → Right click on the textbox →
Format shape → Properties → Don’t move or size with cells
To allow scrolling, and ensure the top stay swhere it is → View → Freeze Pane
Lab 6
Just read from your textbook.