- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
Correct all Punctuation mistakes in blink of an eye using Word VBA | Data Entry Tips and Tricks
#youtubeismyteacher #wordvba #grammarly
English Grammar errors and mistakes will be covered by this Word VBA Macro. grammarly English mistakes such as double spaces blank paragraph marks punctuation can be corrected in milliseconds with just one click.
learn simple data entry and time saving Tips and Tricks. don't waste your time adjusting every entry manually just use VBA macros to your life easy.
Shortcut Keys:
Alt+F11 to open VBA Editor.
Alt+F8 to run saved Macros.
You can use the following MS Word VBA Macro to correct all punctuation mistakes in Microsoft Word file. This code will correct
double space
comma punctuation
full stop punctuation
exclamation mark punctuation
Sub PUNCTUATION()
Set ac = ActiveDocument.Range
With ac.Find
.ClearFormatting
.Replacement.ClearFormatting
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
.Execute FindText:=" ", ReplaceWith:=" ", Replace:=wdReplaceAll
.Execute FindText:=" ", ReplaceWith:=" ", Replace:=wdReplaceAll
.Execute FindText:="^p ", ReplaceWith:="^p", Replace:=wdReplaceAll
.Execute FindText:=" ^p", ReplaceWith:="^p", Replace:=wdReplaceAll
.Execute FindText:="^p^p^p", ReplaceWith:="^p", Replace:=wdReplaceAll
.Execute FindText:="^p^p", ReplaceWith:="^p", Replace:=wdReplaceAll
.Execute FindText:="...", ReplaceWith:=".", Replace:=wdReplaceAll
.Execute FindText:="..", ReplaceWith:=".", Replace:=wdReplaceAll
.Execute FindText:=" .", ReplaceWith:=".", Replace:=wdReplaceAll
.Execute FindText:=" ,", ReplaceWith:=",", Replace:=wdReplaceAll
.Execute FindText:=" '", ReplaceWith:="'", Replace:=wdReplaceAll
.Execute FindText:=" :", ReplaceWith:=":", Replace:=wdReplaceAll
.Execute FindText:=" ;", ReplaceWith:=";", Replace:=wdReplaceAll
.Execute FindText:="( ", ReplaceWith:="(", Replace:=wdReplaceAll
.Execute FindText:=" )", ReplaceWith:=")", Replace:=wdReplaceAll
End With
End Sub
===============
== Follow me on==
===============
Facebook Pages...
DesignAbad: https://www.facebook.com/DesignAbad/
VBA – Make it Easy: https://www.facebook.com/VBA-Macros-for-Word-Excel-413537909418715/
=============
== CONNECT ==
=============
Youtube: https://www.youtube.com/channel/UCQxTp8di45tu5UYpxvAXqfg?sub_confirmation=1
Instagram: https://www.instagram.com/Ibn.e.Ashiq/
Facebook: https://www.facebook.com/Ibn.Ashiq/
Twitter: https://twitter.com/Ibn_e_Ashiq/
Видео Correct all Punctuation mistakes in blink of an eye using Word VBA | Data Entry Tips and Tricks канала VBA by MBA
English Grammar errors and mistakes will be covered by this Word VBA Macro. grammarly English mistakes such as double spaces blank paragraph marks punctuation can be corrected in milliseconds with just one click.
learn simple data entry and time saving Tips and Tricks. don't waste your time adjusting every entry manually just use VBA macros to your life easy.
Shortcut Keys:
Alt+F11 to open VBA Editor.
Alt+F8 to run saved Macros.
You can use the following MS Word VBA Macro to correct all punctuation mistakes in Microsoft Word file. This code will correct
double space
comma punctuation
full stop punctuation
exclamation mark punctuation
Sub PUNCTUATION()
Set ac = ActiveDocument.Range
With ac.Find
.ClearFormatting
.Replacement.ClearFormatting
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
.Execute FindText:=" ", ReplaceWith:=" ", Replace:=wdReplaceAll
.Execute FindText:=" ", ReplaceWith:=" ", Replace:=wdReplaceAll
.Execute FindText:="^p ", ReplaceWith:="^p", Replace:=wdReplaceAll
.Execute FindText:=" ^p", ReplaceWith:="^p", Replace:=wdReplaceAll
.Execute FindText:="^p^p^p", ReplaceWith:="^p", Replace:=wdReplaceAll
.Execute FindText:="^p^p", ReplaceWith:="^p", Replace:=wdReplaceAll
.Execute FindText:="...", ReplaceWith:=".", Replace:=wdReplaceAll
.Execute FindText:="..", ReplaceWith:=".", Replace:=wdReplaceAll
.Execute FindText:=" .", ReplaceWith:=".", Replace:=wdReplaceAll
.Execute FindText:=" ,", ReplaceWith:=",", Replace:=wdReplaceAll
.Execute FindText:=" '", ReplaceWith:="'", Replace:=wdReplaceAll
.Execute FindText:=" :", ReplaceWith:=":", Replace:=wdReplaceAll
.Execute FindText:=" ;", ReplaceWith:=";", Replace:=wdReplaceAll
.Execute FindText:="( ", ReplaceWith:="(", Replace:=wdReplaceAll
.Execute FindText:=" )", ReplaceWith:=")", Replace:=wdReplaceAll
End With
End Sub
===============
== Follow me on==
===============
Facebook Pages...
DesignAbad: https://www.facebook.com/DesignAbad/
VBA – Make it Easy: https://www.facebook.com/VBA-Macros-for-Word-Excel-413537909418715/
=============
== CONNECT ==
=============
Youtube: https://www.youtube.com/channel/UCQxTp8di45tu5UYpxvAXqfg?sub_confirmation=1
Instagram: https://www.instagram.com/Ibn.e.Ashiq/
Facebook: https://www.facebook.com/Ibn.Ashiq/
Twitter: https://twitter.com/Ibn_e_Ashiq/
Видео Correct all Punctuation mistakes in blink of an eye using Word VBA | Data Entry Tips and Tricks канала VBA by MBA
pdf paragraphs punctuation mistakes exclamation mark question mark sentence punctuation punctuation in english punctuation explained word vba ms word vba comma punctuation exclamation mark punctuation data entry tips data entry tricks data entry gig tips fiverr data entry gigs fiverr data entry grammarly grammar english grammar errors grammar errors in english
Комментарии отсутствуют
Информация о видео
6 декабря 2019 г. 17:04:52
00:02:29
Другие видео канала




















