Microsoft Tech Community - Latest Blogs - Excel Blog

‏إظهار الرسائل ذات التسميات excel الاكسل. إظهار كافة الرسائل
‏إظهار الرسائل ذات التسميات excel الاكسل. إظهار كافة الرسائل

الثلاثاء، 28 مايو 2024

دوال List.split , list.transform table.fromrecords powerquery

 

دوال List.split , list.transform 

table.fromrecords 




    // Unpivot the date columns, creating an Attribute-Value pair

    #"Unpivoted Columns" = Table.UnpivotOtherColumns(#"Removed Columns1", {"القسم ", "المرحلة", "اسم التلميذ"}, "Attribute", "Value"),

    

    // Split the list of unpivoted values into lists of 3 items each

    Custom1 = List.Split(#"Unpivoted Columns"[Value], 3),


    // Convert each list of 3 items into a record

    RecordsList = List.Transform(Custom1, each [Field1 = _{0}, Field2 = _{1}, Field3 = _{2}]),


    // Create a new table from the list of records

    RecordsTable = Table.FromRecords(RecordsList, {"Field1", "Field2", "Field3"})

الجمعة، 16 فبراير 2024

keyboard shortcuts for excel Selecting a Range of Cells اختصارات لوحة المفاتيح للتتنقل داخل الاكسل باحترافية

 


keyboard shortcuts for excel Selecting a Range of Cells اختصارات لوحة المفاتيح للتتنقل داخل الاكسل باحترافية





Create Dependent Drop Down List Tutorial in Excel

Create Dependent Drop Down List Tutorial in Excel  

انشاء قوائم منسدلة مترابطة في تحليل المصروفات ومراكز التكلفة




اضافة الصور لخلايا الاكسل والاستعلام عنها في الجداول وتحليل البيانات

 

اضافة الصور لخلايا الاكسل والاستعلام عنها في الجداول وتحليل البيانات




الثلاثاء، 8 أغسطس 2023

Excel functions are the backbone of a financial modeler’s day to day work





Excel functions are the backbone of a financial modeler’s day to day work and as such, it’s essential to have a good understanding of the functions that are commonly used to build financial models.

Below are the top Excel functions that you must know as a financial modeler grouped by area.

Are there any functions that you would include in your top 20 functions for

 

 

الثلاثاء، 1 أغسطس 2023

Combine ranges with CHOOSE

 


Combine ranges with CHOOSE

كل شيء عن دالة choose ف يالاكسل

 



Introduction to Excel CHOOSE Function

In Microsoft Excel, the CHOOSE function selects a value or performs an action from a list of values, based on the index number. It needs two required arguments to function.

Use Excel CHOOSE Function to Replace Nested IFs

 


Use Excel CHOOSE Function to Replace Nested IFs


1.1 Return Value Based on Conditions

In the first case, we will return a value based on some conditions using the CHOOSE function. The dataset we will use here contains the Test Scores of some students. We can easily assign the grades using the CHOOSE function. You can see the Grade Distribution in the picture below.

Use Excel CHOOSE Function to Replace Nested IFs

Introduction to Excel CHOOSE Function



Introduction to Excel CHOOSE Function

In Microsoft Excel, the CHOOSE function selects a value or performs an action from a list of values, based on the index number. It needs two required arguments to function.

  • Syntax

CHOOSE(index_num, value1, [value2]….)

  • Arguments

index_num: It is the position number of the values. Position of value1 is 1value2 is 2, and so on.

value1: It is the second required argument inside the CHOOSE function. You can enter value2value3, and many more for your purposes.

For example, if you type =CHOOSE(3,"Jan","Feb","Mar","Apr","May","June") in a cell, and, press Enter, then the output will be Mar because Mar is the third value among the specified values.

advanced choose function excel



الاثنين، 31 يوليو 2023

Apply CHOOSE Function with Array to Return Multiple Values in Excel

 


Apply CHOOSE Function with Array to Return Multiple Values in Excel


Let’s say, we have a dataset (B4:D12) in Excel containing the Names of some students and their marks in Math and Physics. However, we need to pick a student’s Name along the marks in the two subjects. Here, we will use the CHOOSE function in Excel with the array to return these multiple values. By applying the formula of this method, we will always get the values in a row even if they are in a column. The steps are below.

Apply CHOOSE Function with Array to Return Multiple Values in Excel