Excel PDFファイルのページ数を取得する ' PDFページ数取得関数のテストプロシージャ '---------------------------------------------------------------- ’呼び出すプロシージャ '-----------------... 2024.03.25 (月) 13:26 Excel
Excel シートのコピー(シート名に対する位置指定) Sub prcCopySheetAndRename() ' 変数宣言 Dim wstOriginal As Worksheet Dim wstNew As Worksheet Dim strNewName As String ' コピーする... 2024.03.13 (水) 18:15 Excel
Excel 分を●時間●分のような文字列で取得する関数 Function ConvertMinutesToTimeString(minutes As Long) As String Dim hours As Long Dim remainderMinutes As Long ' 分を時間と分に変... 2024.03.08 (金) 11:44 Excel
Excel 文字列として入力されているフルパスをハイパーリンクに変換 Sub ConvertPathsToHyperlinksWithRange(lngStartRow As Long, lngEndRow As Long) Dim ws As Worksheet Dim cell As Range ' ワー... 2024.03.07 (木) 19:56 Excel
Excel 特定キーワードを含むパスをフルパスリストから取得 Sub MatchKeywordsAndOutputPaths() ' 変数宣言 Dim wsKeywords As Worksheet Dim wsPaths As Worksheet Dim lngLastRowKeywords As ... 2024.03.07 (木) 19:31 Excel
Excel 指定キーワードが含まれるファイルのフルパスをリストから取得 Sub MatchKeywordsAndOutputPaths() Dim wsKeywords As Worksheet Dim wsPaths As Worksheet Dim lastRowKeywords As Long Dim l... 2024.03.07 (木) 19:19 Excel
Excel 指定したフォルダのファイルリストを作成(サブフォルダも含む) Sub WriteFilesToTable(folderPath As String) Dim fso As FileSystemObject Dim folder As Folder Dim subFolder As Folder Dim... 2024.03.07 (木) 14:18 Excel
Excel 複数フィールドを検索対象とし、キーワードに基づいて動的にフィルタを生成する処理 Sub ApplyConcatenatedFieldsFilterAndCondition() Dim strFilter As String Dim strConcatFields As String Dim strKey1 As Str... 2024.02.29 (木) 10:13 Excel
Excel 指定フォルダ内のファイル数を取得する関数(サブフォルダ内のファイル数もカウント) Function GetTotalFileCount(folderPath As String) As Long Dim fso As FileSystemObject Dim folder As Folder Dim subFolder ... 2024.02.28 (水) 16:17 Excel
Excel シートAのテキストがシートBのテキストマスタに存在しない場合はテキストマスタに新規登録する Sub AddNewTextsToMasterUsingDictionary() ' ライブラリ参照設定済み: Microsoft Scripting Runtime Dim wsSource As Worksheet Dim wsMast... 2024.02.27 (火) 13:38 Excel