guirmaia
New Member
Hi everyone,
I want to format my VBA code. Is any way to do it automatically ?
Example what I have:
	
	
	
		
What I want:
	
	
	
		
This is just a few rows, but for a code like 140 rows to do one by one is frustrating...
<Mod Edit: Please nest your code in code tag, using insert tool>
				
			I want to format my VBA code. Is any way to do it automatically ?
Example what I have:
		Code:
	
	Sub Calcular()
Application.ScreenUpdating = False
With ActiveSheet
h = .Range("F19")
If Not WorksheetFunction.IsNumber(h) Then
.Range("F19").Select
MsgBox "Altura não é um número válido.", vbInformation, "Nota"
Exit SubWhat I want:
		Code:
	
	Sub Calcular()
Application.ScreenUpdating = False
With ActiveSheet
  h = .Range("F19")
  If Not WorksheetFunction.IsNumber(h) Then
      .Range("F19").Select
      MsgBox "Altura não é um número válido.", vbInformation, "Nota"
      Exit Sub
  End If
End SubThis is just a few rows, but for a code like 140 rows to do one by one is frustrating...
<Mod Edit: Please nest your code in code tag, using insert tool>
			
				Last edited by a moderator: 
			
		
	
								
								
									
	
								
							
							 
	 
 
		 
					
				