Olá, tudo bem?
Referente à Aula 02 - Vídeo 05:
Existe alguma diferença (vantagem ou desvantagem) em atribuir ao Range("F2") o valor de txtPeso.Value, no lugar de Trim(txtPeso); pois aparentemente ambos geraram os mesmos resultados?
Range("F2") = txtPeso.Value ou Range("F2") = Trim(txtPeso)
Código: Private Sub cmdFiltrar_Click() Sheets("Base Filtrada").Select Range("A2:M2").Select Selection.ClearContents 'Range("F2") = txtPeso.Value ou 'Range("F2") = Trim(txtPeso) FiltrarBase Sheets("Dashboard").Select End Sub