軟體:VBA
版本:2007
Into_Date_B = "=(match(" & Into_Date & "," & (j * 100) & ".txt" &
"!$A:$A,0))"
Into_Date_E = "=(match(" & Into_Date & "," & (j * 100) & ".txt" &
"!$A:$A,1))"
If Cells(i, 18) = j * 100 Then ActiveSheet.Cells(i, 29).Value = "=vlookup("
& Into_Time & ",(INDIRECT(" & (j * 100) & ".txt" & "!$B" & Into_Date_B &
":$H" & Into_Date_E & ")),5,0)"
請問 為什麼 into_date_B 和 into_date_E 改成單純數字的時候 就能夠正常
但是如上述這樣寫就有問題
問題在於 into_date_B 和into_date_E他們回傳的是公式 但不是數值
可以讓他只回傳計算結果嗎?