1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| Sub fini_Click()
Call ajoutnamehost
Call additioninfo
Call hostadd
Call rss
Dim Ligne As Long
With Sheets("solution")
Ligne = .Cells(Columns(3).Cells.Count, 3).End(xlUp).Row + 1
With .Cells(Ligne - 1, 4)
If auto.Value = True Then .Value = "Automation" & vbCrLf
If nano.Value = True Then .Value = "Nanotechnologies" & vbCrLf
If robo.Value = True Then .Value = "Robotics" & vbCrLf
If vir.Value = True Then .Value = "Virtual Reality" & vbCrLf
If sens.Value = True Then .Value = "Sensors" & vbCrLf
If inf.Value = True Then .Value = "Information Systems" & vbCrLf
If compu.Value = True Then .Value = "Computer Science" & vbCrLf
If mat.Value = True Then .Value = "Materials" & vbCrLf
If met.Value = True Then .Value = "Metals" & vbCrLf
If sur.Value = True Then .Value = "Surface Technologies" & vbCrLf
If comp.Value = True Then .Value = "Composites" & vbCrLf
If bond.Value = True Then: .Value = "Bonding" & vbCrLf
If ass.Value = True Then .Value = "Assembly" & vbCrLf
If nd.Value = True Then .Value = "Non Destructive Evaluation" & vbCrLf
If mach.Value = True Then .Value = "Machining" & vbCrLf
If add.Value = True Then .Value = "Additive Layer Manufacturing"
If gn.Value = True Then .Value = "General News" & vbCrLf
If man.Value = True Then .Value = "Manufacturing" & vbCrLf
.Value = Left(.Value, Len(.Value) - 1)
End With
End With
Unload Me
End Sub |
Partager