اذهب الي المحتوي
أوفيسنا

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

قام بنشر

اخي الفاضل

سبق  حل هذا السؤال من  الاستاذ بن عليه حاجي والاستاذ سليم حاصبيا 

https://www.officena.net/ib/topic/98022-فصل-المادة-عن-الشعبة-في-حقل-مستقل/

تحياتي

  • Like 1
  • أفضل إجابة
قام بنشر

استخدم هذه المعادلة في الخلية E2 واسحب يميناً عامود واحد و نزولاً الى اخر صف

=Separate_col($C2,"\W+\d+",COLUMNS($E$1:E1))

الكود

Option Explicit
Function Separate_col(rg As Range, my_expression, n)
Dim Obj As Object
Dim matches, x, i, cnt%
Dim NowArray(), Match
Set Obj = CreateObject("vbscript.regexp")
With Obj
  .Pattern = my_expression
  .Global = True
  .IgnoreCase = True
End With
'+++++++++++++++++++++++++
 Set matches = Obj.Execute(rg.Value)
   x = matches.Count
   If x = 0 Then Separate_col = "N/A": Exit Function
   '============================
   ReDim NowArray(x - 1)
   For Each Match In matches
    NowArray(cnt) = Match.Value
    cnt = cnt + 1
   Next
   If n - 1 > UBound(NowArray) Then Separate_col = "N/A": Exit Function
   Separate_col = NowArray(n - 1)
   Set Obj = Nothing
End Function

الملف مرفق

 

UDF_FORMULA.xlsm

  • Like 2

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