نايف - م قام بنشر مايو 23, 2022 قام بنشر مايو 23, 2022 السلام عليكم في مجال به خلايا مكتوب و حلايا فارغة .. كيف يمكن الحصول على مسج عند تغيير احدى الخلايا المكتوبة مع الشكر ملاحظة : لا يمكن الطلب من خلال ملف جربت الكود التالي و لم ينجح Dim KeyCells As Range ' The variable KeyCells contains the cells that will ' cause an alert when they are changed. ' Set KeyCells = Range("A1:C10") lastrow = æÑÞÉ11.Cells(rows.Count, "b").End(xlUp).Row Set KeyCells = æÑÞÉ11.Range("b2:b" & lastrow) If Not Application.Intersect(KeyCells, Range(Target.Address)) Is Nothing Then ' Display a message when one of the designated cells has been changed. ' Place your code here. MsgBox "Cell " & Target.Address & " has changed." End If
omar elhosseini قام بنشر مايو 23, 2022 قام بنشر مايو 23, 2022 اخي ضع الكود التالي في حدث التغير Private Sub Worksheet_Change(ByVal Target As Range) ' Dim KeyCells As Range ' The variable KeyCells contains the cells that will ' cause an alert when they are changed. ' Set KeyCells = Range("A1:C10") lastrow = æÑÞÉ11.Cells(Rows.Count, "b").End(xlUp).Row Set KeyCells = æÑÞÉ11.Range("b2:b" & lastrow) If Not Application.Intersect(KeyCells, Range(Target.Address)) Is Nothing Then ' Display a message when one of the designated cells has been changed. ' Place your code here. MsgBox "Cell " & Target.Address & " has changed." End If ' End Sub شاهد المرفق المصنف1.xlsm 1
نايف - م قام بنشر مايو 24, 2022 الكاتب قام بنشر مايو 24, 2022 الأخ الغالي omar elhosseini نفس الكود أنا وضعته في مشاركتي و قلت أنني جربته و لم ينجح عندما تكتب في خلية فارغة فأنع يعطي رسالة أنا أريد الرسالة فقط في الخلايا المكتوب فيها و ليست الفارغة مع الشكر
أفضل إجابة omar elhosseini قام بنشر مايو 24, 2022 أفضل إجابة قام بنشر مايو 24, 2022 شاهد المرفق المصنف1.xlsm
الردود الموصى بها
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.