仕事上自動化ツールを作成したいのですが、どうしてもエクセルでSQLが出来ず困っています。
やりたいこと:ボタンひとつで、エクセルシートにある表の必要な部分を取り出して別のシートに貼り付ける。
SQLでは
SELECT xxxxx,data,MIN(time) As times
From xxxxx
WHERE ●●●="●●●"
GROUP BY xxxxx,data;
です。
実際に今書いているVBAが途中なのですが、
Option Explicit
Sub createInsertSql()
Dim newbook As Workbook
Dim currentCell As Range
'前処理
Dim srcSheet As Worksheet
Set srcSheet = ActiveSheet
Dim targetRange As Range
Set targetRange = srcSheet.UsedRange
Dim head As String
head = "SERECT " & srcSheet.Name & " ("
Dim first As Boolean
first = True
Dim currentColumnIndex As Integer
For currentColumnIndex = 1 To targetRange.Columns.Count
If (first) Then
first = False
Else
head = head & "xxxxx,data,MIN(time)"
End If
Set currentCell = srcSheet.Cells(1, currentColumnIndex)
head = head & currentCell.Value
Next
head = head & ") "
'新しいBook作成
Set newbook = Workbooks.Add
Dim currentRowIndex As Integer
For currentRowIndex = 2 To targetRange.Rows.Count
Dim sql As String
sql = head & "values ("
first = True
For currentColumnIndex = 1 To targetRange.Columns.Count
If (first) Then
first = False
Else
sql = sql & ","
End If
Set currentCell = srcSheet.Cells(currentRowIndex, currentColumnIndex)
If IsNull(currentCell) Or Trim(currentCell.Value) = "" Then
sql = sql & "null"
ElseIf IsNumeric(currentCell.Value) Then
sql = sql & currentCell.Value
Else
sql = sql & "'" & currentCell.Value & "'"
End If
Next
sql = sql & ");"
newbook.ActiveSheet.Cells(currentRowIndex - 1, 1).Value = sql
Next
End Sub
いろんなサイトを見ていろいろ組み合わせてみたのですが、やはり出来ず。
意味を理解しようとも中々できずです。
恐れ入りますが、答えまではいかなくとも、どのようにしたらいいかのヒントだけでも
いただけると嬉しいです。
よろしくお願いします。
お礼
ありがとうございます! 参考にさせて頂きます!