Hi all,
I've recently generated an excel table for my company, showing every kind of assessment we do (followed by an ActiveX checkbox).
The initial aim was to select any boxes you want, and generate a price at the end.
Easy.
This in order to fast generate Sales Quote of course.
Here is an image (with fake Assessments of course).
View image: excel
Thanks a lot for the answers, I will keep it updated and send the final macro if needed.
AxelD
I've recently generated an excel table for my company, showing every kind of assessment we do (followed by an ActiveX checkbox).
The initial aim was to select any boxes you want, and generate a price at the end.
Easy.
Private Sub CheckBox6_Click()
temp = "23"
temp2 = "H23"
If (CheckBox6 = True) Then
Range(temp2) = Range("_C1_").Value
Else: Range(temp2) = 0
End If
End Sub
Now what I want to do is to attach a Word paragraph (describing the task) to every box, so that whenever you are done checking your boxes it generates, on a pre-template Word document, all the paragraphes (using macros).
This in order to fast generate Sales Quote of course.
Here is an image (with fake Assessments of course).
Thanks a lot for the answers, I will keep it updated and send the final macro if needed.
AxelD