-1-
-2-
068 استخرج اقل 3 قيم من الجدول ب عدة طرق ROW - ROWS - SMALL - INDEX - MATCH
1 كتاب تعلم برنامج Excel من الصفر للاحتراف pdf مجانا
2 تحميل كتاب الإكسل للمهندسين pdf
3 كتاب مجاني شرح أكثر من 100 دالة من الإكسل
4 كتاب متقدم جدا 👌 كتاب طرق الاهلاك باستخدام دوال الاكسيل
2 تحميل كتاب الإكسل للمهندسين pdf
3 كتاب مجاني شرح أكثر من 100 دالة من الإكسل
4 كتاب متقدم جدا 👌 كتاب طرق الاهلاك باستخدام دوال الاكسيل
068 استخرج اقل 3 قيم
من الجدول ب عدة طرق ROW - ROWS - SMALL - INDEX - MATCH
، إليك عدة طرق لاستخراج أقل 3 قيم من الجدول:
باستخدام ROW
=ROWS(A1:A10)-3
هذه الطريقة ترجع عدد الصفوف في الجدول، ثم تطرح 3 منها للحصول على الصف الأخير الذي يحتوي على أقل 3 قيم.
باستخدام ROWS
=SMALL(A1:A10,ROWS(A1:A10)-3)
هذه الطريقة ترجع أصغر قيمة في الجدول، ثم تستخدم دالة SMALL لتحديد أقل 3 قيم التالية.
باستخدام SMALL
=SMALL(A1:A10,3)
هذه الطريقة ترجع أصغر 3 قيم مباشرةً.
باستخدام INDEX و MATCH
=INDEX(A1:A10,MATCH(ROW(A1:A10)-3,SORT(A1:A10,1,1),0))
هذه الطريقة تستخدم دالة SORT لفرز القيم في الجدول، ثم تستخدم دالة MATCH لتحديد الصف الذي يحتوي على القيمة الثالثة الأصغر.
فيما يلي مثال على استخدام هذه الطرق:
=ROW(A1:A10)-3
=SMALL(A1:A10,ROWS(A1:A10)-3)
=SMALL(A1:A10,3)
=INDEX(A1:A10,MATCH(ROW(A1:A10)-3,SORT(A1:A10,1,1),0))
سيؤدي هذا إلى إرجاع القيم التالية:
7
1
2
------------------------------------------------------
ROW
returns the row number of a cell. For example, the formula =ROW(A1) will return 1.
ROWS returns the number of rows in a range. For example, the formula =ROWS(A1:A10) will return 10.
SMALL
returns the k-th smallest value in a range. For example, the formula =SMALL(A1:A10,3) will return the third smallest value in the range A1:A10.
INDEX
returns the value at a specific row and column in a range. For example, the formula =INDEX(A1:A10,2,3) will return the value in the third row and fourth column of the range A1:A10.
MATCH
returns the position of a value in a range. For example, the formula =MATCH(3,A1:A10,0) will return the position of the value 3 in the range A1:A10, starting from the leftmost cell and searching for an exact match.
To extract the least 3 values from a table, you can use the following formulas:
Using ROW:
=ROWS(A1:A10)-3
This formula will return the number of the last row that contains the least 3 values.
Using ROWS and SMALL:
=SMALL(A1:A10,ROWS(A1:A10)-3)
This formula will first return the smallest value in the range, then use the SMALL function to return the next two smallest values.
Using SMALL:
=SMALL(A1:A10,3)
This formula will directly return the least 3 values.
Using INDEX and MATCH:
=INDEX(A1:A10,MATCH(ROWS(A1:A10)-3,SORT(A1:A10,1,1),0))
This formula will first sort the values in the range, then use the MATCH function to find the row that contains the third smallest value.
The best way to extract the least 3 values from a table depends on the specific data and the desired results. In general, the simplest and most efficient way is to use the SMALL function.
-3-
-4-