This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Function DataGet(SheetName As String, StartRow As Integer, StartColumn As Integer) As Variant | |
Dim EndRow As Integer | |
Dim EndColumn As Integer | |
Dim Data As Variant | |
With Sheets(SheetName) | |
EndColumn = .Cells(StartRow, StartColumn).End(xlToRight).Column | |
EndRow = .Cells(StartRow, StartColumn).End(xlDown).row | |
End With | |
Data = Sheets(SheetName).Range(Sheets(SheetName).Cells(StartRow, StartColumn), Sheets(SheetName).Cells(EndRow, EndColumn)) | |
Dim i As Integer '空白の個所だけを狙ってループを回す | |
For i = 1 To UBound(Data, 1) | |
Data(i, 2) = Sheets(SheetName).Cells(StartRow + i - 1, StartColumn + 1).Interior.Color | |
Next i | |
DataGet = Data | |
End Function |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment