Board logo

標題: [發問] 請教 if 判斷式太長 ,怎麼換行? [打印本頁]

作者: ji12345678    時間: 2014-5-13 01:40     標題: 請教 if 判斷式太長 ,怎麼換行?

請教 if 判斷式太長 ,怎麼換行?
if Cells(x_step, 15) = 20  or Cells(x_step, 15) = 235 or Cells(x_step, 15) = 25 or Cells(x_step, 15) = 207  then
  
Else

End if


Cells(x_step, 15) = 20  or Cells(x_step, 15) = 235 or _  ===========>寫成兩行,要怎麼寫丫。
Cells(x_step, 15) = 25 or Cells(x_step, 15) = 207 then

感恩~~~。謝謝。
作者: smart3135    時間: 2014-5-13 05:14

回復 1# ji12345678
參考看看
  1. Sub test()
  2. If Cells(x_step, 15) = 20 Or Cells(x_step, 15) = 235 Or _
  3. Cells(x_step, 15) = 25 Or Cells(x_step, 15) = 207 Then
  4. End If
  5. End Sub
複製代碼

作者: sunnyso    時間: 2014-5-15 10:39

回復 1# ji12345678
  1. num2lookup = ",20,235,25,207,"
  2. if UBound(Split(num2lookup, "," & Cells(x_step, 15) & ",")) >0 then
  3. ......
  4. end if
  5.    
複製代碼

作者: jewayy    時間: 2014-5-15 21:56

多加個  _   符號就可以接下行了!




歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)