¤p§Ì¦UºØ¹Á¸ÕÁÙ¬OµL¸Ñ,·Q½Ð°ª¤â¨ó§U¤@¤U
°õ¦æ¦¹µ{¦¡·|±N©Ò¦³sheetÀx¦s®æªº111§ï¬°§A¦n
¥i§_«ü©w§ìsheetªºJÄ氵קï?
·P¿E¤£ºÉ!!!!:)
Option Explicit
Sub LoopSheets()
Dim ws As Worksheet
For Each ws In Sheets
ReplaceText "111", "§A¦n", ws
Next
End Sub
Function ReplaceText(src As String, Rpl As String, sht As Worksheet)
sht.Cells.Replace What:=src, Replacement:=Rpl, LookAt:=xlWhole, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
End Function |