1

"各セルの最初と"最後に追加する必要があるかなり大きな Excel csv ファイルがあります。

セルには混合テキストが含まれています。

  • 数字
  • 文章
  • リンク

など、各セルの最初と最後に引用符を追加する必要があります。

これどうやってするの?

4

2 に答える 2

2

手で:

  • 最初のセルの値をに変更 =""""&A1&""""
  • このセル形式をページ全体にドラッグします

またはVBマクロで

于 2012-04-12T11:05:48.990 に答える
1

このコードをExcel から採用し、数式バーの先行ゼロを表示しました

速度効率のためにバリアント配列を使用しUsedRange、スプレッドシートの一部のみを更新します

  • Alt キーと F11 キーを同時に押して、VBE に移動します。
  • モジュールを挿入
  • 以下のコードをコピーして貼り付けます
  • Alt キーと F11 キーを同時に押すと、Excel に戻ります
  • 開発者タブからマクロを実行します

必要に応じて、空白のセルを無視するように調整できます-お知らせください

Sub AddStrings()
Dim rng1 As Range
Dim rngArea As Range
Dim strRep1 As String
Dim strRep2 As String
Dim lngRow As Long
Dim lngCol As Long
Dim lngCalc As Long
Dim X()


strRep1 = """"
strRep2 = """"

ActiveSheet.UsedRange
Set rng1 = ActiveSheet.UsedRange

'Speed up the code by turning off screenupdating and setting calculation to manual
'Disable any code events that may occur when writing to cells
With Application
    lngCalc = .Calculation
    .ScreenUpdating = False
    .Calculation = xlCalculationManual
    .EnableEvents = False
End With

'Test each area in the user selected range

'Non contiguous range areas are common when using SpecialCells to define specific cell types to work on
For Each rngArea In rng1.Areas
    'The most common outcome is used for the True outcome to optimise code speed
    If rngArea.Cells.Count > 1 Then
        'If there is more than once cell then set the variant array to the dimensions of the range area
        'Using Value2 provides a useful speed improvement over Value. On my testing it was 2% on blank cells, up to 10% on non-blanks
        X = rngArea.Value2
        For lngRow = 1 To rngArea.Rows.Count
            For lngCol = 1 To rngArea.Columns.Count
                'replace the leading zeroes
                X(lngRow, lngCol) = strRep1 & X(lngRow, lngCol) & strRep2
            Next lngCol
        Next lngRow
        'Dump the updated array sans leading zeroes back over the initial range
        rngArea.Value2 = X
    Else
        'caters for a single cell range area. No variant array required
        rngArea.Value = strRep1 & rngArea.Value2 & strRep2
    End If
Next rngArea

'cleanup the Application settings
With Application
    .ScreenUpdating = True
    .Calculation = lngCalc
    .EnableEvents = True
End With

End Sub
于 2012-04-12T11:11:31.177 に答える