Bonjour le forum,
Je sollicite votre aide pour la récupération d'un commentaire d'une cellule pour le mettre dans une TextBox qui se trouve dans un userForm.
Dans le code ci-dessous le code récupère le commentaire, si il y a un commentaire c'est ok, par contre si pas de commentaire plantage.
Comment faire pour gérer cette erreur ?
Les 2 lignes posant problème
'UserForm6.TextBox20 = Range("W" & Lig).Comment.Text
'UserForm6.TextBox21 = Range("X" & Lig).Comment.Text
Merci pour votre aide,
Je sollicite votre aide pour la récupération d'un commentaire d'une cellule pour le mettre dans une TextBox qui se trouve dans un userForm.
Dans le code ci-dessous le code récupère le commentaire, si il y a un commentaire c'est ok, par contre si pas de commentaire plantage.
Comment faire pour gérer cette erreur ?
Les 2 lignes posant problème
'UserForm6.TextBox20 = Range("W" & Lig).Comment.Text
'UserForm6.TextBox21 = Range("X" & Lig).Comment.Text
VB:
Sub Vision()
Cells.Find(What:=ActiveCell.Value, After:=ActiveCell, LookIn:=xlValues, LookAt:= _
xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False _
, SearchFormat:=False).Activate
Sheets("Usinage").Select
Cells.FindNext(After:=ActiveCell).Activate
Dim Lig As Long
Lig = ActiveCell.Row
UserForm6.TextBox1.Text = ActiveCell.Value
UserForm6.TextBox2.Text = Range("B" & Lig).Value
UserForm6.TextBox3.Text = Range("C" & Lig).Value
UserForm6.TextBox7.Text = Range("E" & Lig).Value
UserForm6.TextBox4.Text = Range("G" & Lig).Value
UserForm6.TextBox5.Text = Range("H" & Lig).Value
UserForm6.TextBox6.Text = Range("I" & Lig).Value
UserForm6.TextBox8.Text = Range("AQ" & Lig).Value
UserForm6.TextBox9.Text = Range("J" & Lig).Value
UserForm6.TextBox10.Text = Range("K" & Lig).Value
UserForm6.TextBox11.Text = Range("L" & Lig).Value
UserForm6.TextBox12.Text = Range("M" & Lig).Value
UserForm6.TextBox13.Text = Range("O" & Lig).Value
UserForm6.TextBox14.Text = Range("N" & Lig).Value
UserForm6.TextBox15.Text = Range("Q" & Lig).Value
UserForm6.TextBox16.Text = Range("R" & Lig).Value
UserForm6.TextBox17.Text = Range("S" & Lig).Value
UserForm6.TextBox18.Text = Range("T" & Lig).Value
UserForm6.TextBox19.Text = Range("U" & Lig).Value
'UserForm6.TextBox20 = Range("W" & Lig).Comment.Text
'UserForm6.TextBox21 = Range("X" & Lig).Comment.Text
UserForm6.TextBox22.Text = Range("V" & Lig).Value
UserForm6.TextBox23.Text = Range("W" & Lig).Value
UserForm6.TextBox24.Text = Range("X" & Lig).Value
UserForm6.TextBox25.Text = Range("Y" & Lig).Value
UserForm6.Show
End Sub
Merci pour votre aide,