Like Anhn suggested, your code should be clearer to read. you can further clean it up and write it as...

vb Code:
  1. Sub test()
  2.  
  3. If (CurrentTitle = "DOM" Or CurrentTitle = "USA") And (HeaderNum = "2") _
  4. And (prev = "EAST") And (vari = "FOLIO") Then
  5.  
  6.     'use "Call", if it is a sub
  7.     Call MakeChanges2_9
  8.  
  9.     Application.StatusBar = "2_9Using EAST Zone FIRST Edition as source for FOLIO Zone"
  10.  
  11. End If
  12.  
  13. End Sub

Hope this helps...