EP2: How to

Опубликовано: 14 Май 2026
на канале: SuperChoice
10
0

ทำ#รายงานรายวัน รายสัปดาห์ รายเดือน
ดูวิธี เพิ่มเมนู Developer Tap ตรงนี้    • How to add Developer Tap in #Excel on #Mac...  
กด Like กด Share กด Follow เพื่อรับข่าวสารดีๆ ก่อนใคร
คลิปเต็มการสอน YouTube https://www.youtube.com/channel/UCdat...
แหล่งข่าวสารหลัก Facebook   / superchoiceiot  
คลิปสั้น เทคนิควิธี TikTok https://vt.tiktok.com/ZSe5A3BhF/

พร้อมแจกสูตรฟรีๆ ด้านล่างนี้
Sub Step1()

' Step1 Macro
'
' Keyboard Shortcut: Ctrl+z
Selection.Font.Bold = True '

With Selection.Font

.Name = "Calibri"

.Size = 16 '

.Strikethrough = False

.Superscript = False

.Subscript = False

.OutlineFont = False

.Shadow = False

.Underline = xlUnderlineStyleNone

.ThemeColor = xlThemeColorLight1

.TintAndShade = 0

.ThemeFont = xlThemeFontMinor

End With

With Selection.Interior

.Pattern = xlSolid

.PatternColorIndex = xlAutomatic

.Color = 5296274 '

.TintAndShade = 0

.PatternTintAndShade = 0

End With

With Selection.Font

.Color = -16776961 '

.TintAndShade = 0

End With

With Selection

.HorizontalAlignment = xlCenter '

.VerticalAlignment = xlCenter

.WrapText = False

.Orientation = 0

.AddIndent = False

.IndentLevel = 0

.ShrinkToFit = False

.ReadingOrder = xlContext

.MergeCells = False

End With
End