Hello Winner_texas,

Here is the macro. It simply activates the other check boxes . Hiding all the other data leaves only the Cash Flows (if any are present).
Private Sub CheckBox5_Click()
  If CheckBox5 = True Then
     CheckBox1.Value = True
     CheckBox2.Value = True
     CheckBox3.Value = True
     CheckBox4.Value = True
  Else
     CheckBox1.Value = False
     CheckBox2.Value = False
     CheckBox3.Value = False
     CheckBox4.Value = False
  End If
End Sub