Search results

  1. M

    Subform records shake if the number of records is large

    It was explained in the video that when entering data there is vibration in the records... Is there a solution to stop the vibration of the records when entering data... And thanks to everyone
  2. M

    Subform records shake if the number of records is large

    Enter the highest numbers into the lower rectangle, then enter. When you reach 9 numbers, the subform will vibrate....
  3. M

    Hide a specific word from the report

    Thank you teacher is the desired verb thank you
  4. M

    Hide a specific word from the report

    I want to hide or delete the words [cartoon] and the word [set] with parentheses when opening the report and keep them in the table Without using the query name table :: sales
  5. M

    Solved Separate numbers from text

    'بفضل الجميع ، تم العثور على حل Public Function ExcludeText(InputValue As String) As String Dim varCharCnt Dim cntr Dim strChar As String varCharCnt = Len(InputValue) For cntr = 1 To varCharCnt strChar = Mid(InputValue, cntr, 1) If Asc(strChar) <= 65 And Asc(strChar) <> 32 _ And...
  6. M

    Solved Separate numbers from text

    النتيجة النهائية لـ 12 عد 60000 حفظ 50000 126000050000
  7. M

    Solved Separate numbers from text

    I want to extract numbers only from the text box containing numbers and letters
  8. M

    Hello all : I want to show a duplicate value between three columns

    إظهار القيمة المكررة بين ثلاثة أعمدة
  9. M

    Solved Is there another way to sort ascending and descending numbers?

    This is what is required sir... Thank you
  10. M

    Solved Is there another way to sort ascending and descending numbers?

    Me.RecordSource = "SELECT tabl1.number, * FROM tabl1 ORDER BY IIf([number] Is Null,0,Val([number])) ASC;"
  11. M

    Solved Is there another way to sort ascending and descending numbers?

    I want to arrange numbers inside the text field (numbers from small to large)
  12. M

    Solved Is there another way to sort ascending and descending numbers?

    I don't want to go to a table and then right-click sort and sort And I do not want to change the data type to a number. There are letters with numbers I want to sort data with a button and a click
  13. M

    Solved Is there another way to sort ascending and descending numbers?

    I want ascending: 1, 2, 3, 4, 10, 11, 101, 121, 133 without using queries
  14. M

    Solved Hello everyone: After the dlookup process, I want to add the seriousness records to the top of the table

    Thanks for all the replies, it was helpful from the replies to the best solution
  15. M

    Solved Hello everyone: After the dlookup process, I want to add the seriousness records to the top of the table

    I want to send new records to the top of a table.. more clarification was written on a form
  16. M

    Solved dlookup for three fields together

    Thank you, this is what is required...and sorry for the delay in replying due to internet line errors
  17. M

    Solved dlookup for three fields together

    Hello: I want to dlookup for three fields together :: value inside non-repeating fields
  18. M

    Solved I want a value (id) once inside the query

    Thank you: this is what I need
  19. M

    Solved I want a value (id) once inside the query

    Hello everyone: Inside a query, a non-repeated record, but the value (id) is duplicate, I want a value (id) once inside the query
Back
Top Bottom