اذهب الي المحتوي
أوفيسنا
بحث مخصص من جوجل فى أوفيسنا
Custom Search

الردود الموصى بها

قام بنشر

بسيطة

اعمل تجميع (جروب)

استبدل الكود ب :

Option Compare Database
Option Explicit

Private Sub a_AfterUpdate()
Dim dbsNorthwind As DAO.Database
Dim rstProducts As DAO.Recordset
Dim strSQL As String

Set dbsNorthwind = CurrentDb
strSQL = "SELECT TOP 1 mm.mm FROM mm GROUP BY mm.mm ORDER BY Abs([mm]-" & Me.a & ");"
Set rstProducts = dbsNorthwind.OpenRecordset(strSQL)

rstProducts.MoveLast: rstProducts.MoveFirst


If Nz(rstProducts.RecordCount, 0) <> 0 Then
If rstProducts.RecordCount = 1 Then
rstProducts.MoveFirst
Me.b = rstProducts!mm
Me.c = ""
End If

If rstProducts.RecordCount = 2 Then
rstProducts.MoveFirst
Me.b = rstProducts!mm
rstProducts.MoveNext
Me.c = rstProducts!mm
End If

End If

End Sub

واذا كتبت رقم موجود بالجدول سيأتيك الرقم نفسه فقط

واذا كتبت كان يقع في منتصف رقمين فسوف تأتيك القيمين

واذا كان قريبا من قيمة بالجدول فسوف تأتيك هذه القيمة فقط 

 

  • Like 1

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

زائر
اضف رد علي هذا الموضوع....

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • تصفح هذا الموضوع مؤخراً   0 اعضاء متواجدين الان

    • لايوجد اعضاء مسجلون يتصفحون هذه الصفحه
×
×
  • اضف...

Important Information