This file contains hidden or 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
| Dim i As Long | |
| i = 1 | |
| Do While Cells(i, C) <> "foo" 'Cells(i, C)の値がfooでない時に何かの処理を行う | |
| {処理something} | |
| i = i + 1 'iをインクリメント | |
| Loop |
This file contains hidden or 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
| If Len(Cells(R, C)) = LenB(StrConv(Cells(R, C), vbFromUnicode)) Then | |
| ' {Cells(R, C)にある文字列が半角だった時の処理} | |
| Else | |
| ' {Cells(R, C)にある文字列が全角だった時の処理} | |
| End If |
This file contains hidden or 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
| //atom-sync-settings |