snasui.com ยินดีต้อนรับ ยินดีต้อนรับสู่กระดานถามตอบ Excel and VBA และอื่น ๆ ที่เป็นมิตรกับทุกท่าน มีไฟล์แนบมหาศาล ช่วยให้ท่านค้นหาและติดตามศึกษาได้โดยง่าย สมาชิกท่านใดที่ยังไม่ได้ระบุ Version ของ Excel ที่ใช้งานจริง สามารถทำตาม Link นี้เพื่อจะได้รับคำตอบที่ตรงกับ Version ของท่านครับ ระบุ Version ของ Excel
ขอคำชี้แนะครับ คือผมต้องการลบข้อความที่column : C โดยเมื่อ column : D มีค่าค่าเป็น0 ขอคำชี้แนะ ปรับ Code ให้ที่ครับ
Sub Project1()
Range("D1").Select
Do Until Selection.Value = ""
If Selection.Value = "0" Then
Selection.ClearContents '.Delete
Else
Selection.Offset(1, 0).Select
End If
Loop
End Sub
You do not have the required permissions to view the files attached to this post.
Sub Project1()
Range("D1").Select
Do Until Selection.Value = ""
If Selection.Value = 0 Then
Selection.Offset(0, -1).ClearContents '.Delete
End If
Selection.Offset(1, 0).Select
Loop
End Sub