enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. Preview of Dynamic Arrays in Excel | Microsoft Community Hub

    techcommunity.microsoft.com/blog/excelblog/preview-of-dynamic-arrays-in-excel/...

    Old Excel would silently apply implicit intersection logic to its formulas to force single value results. Dynamic Array Excel no longer needs this as it can output arrays natively. So instead of implicitly intersecting, DA Excel calls out where this could have happened in old formulas using the SINGLE function.

  3. Excel Dynamic Array Improvements - techcommunity.microsoft.com

    techcommunity.microsoft.com/blog/excelblog/excel-dynamic-array-improvements/332070

    The reasons for the variance vs VBA/VSTO is i) it simplifies the JS object model, ii) the vast majority of Office JS addins already behave correctly in dynamic array enabled Excel, iii) it’s possible for developers to centrally deploy updates to Office JS Addins (if required) and iv) Office JS addins are newer and, in most cases, are being ...

  4. Creating a dynamic repeating sequence of arrays

    techcommunity.microsoft.com/discussions/excelgeneral/creating-a-dynamic...

    Hi Excel community, I'm trying to find a way to create a dynamic array of repeating cells. I was attempting a similar technique on Google Sheets where you can use a Rept and TextJoin to create a string of the right number of elements, and then a Split function to separate them into rows.

  5. New Excel Functions - techcommunity.microsoft.com

    techcommunity.microsoft.com/blog/excelblog/announcing-new-text-and-array...

    Array Manipulation Functions. Since the release of dynamic arrays in 2019, we’ve seen a large increase in the usage of array formulas. To make it easier to build compelling spreadsheets using dynamic arrays, we are releasing a collection of 11 new array manipulation functions. Combining Arrays

  6. dynamic arrays turn off | Microsoft Community Hub

    techcommunity.microsoft.com/discussions/excelgeneral/dynamic-arrays-turn-off/...

    Consider that I created an array in cells A1:A4 in which the name of the array is given in cell A1 as "value". This would appear as given below, and I could then created the array by highlighting cells A1:A4 and selecting "Alt-I+N+C" for Insert-Name-Create and selecting "top-row" for the location of the name. A1 = value. A2 = 5. A3 = 8. A4 = 12

  7. Limiting the length of results from Dynamic / Spill Arrays

    techcommunity.microsoft.com/discussions/excelgeneral/limiting-the-length-of...

    I am trying to figure out a way to limit the number of results returned from a dynamic array such as =UNIQUE or =FILTER. So for example, say I want to only want to return the first 10 unique values from a list in column A. Using =UNIQUE(A:A) alone will return all unique values.

  8. Ways of performing Accumulation with Dynamic Arrays

    techcommunity.microsoft.com/discussions/excelgeneral/ways-of-performing...

    "The purpose of the proposed approach is to accumulate a sequence of values as a dynamic array. Examples include the flow variables in a running balance or series returned from a difference equation. The key feature of the calculation is that each term depends upon the preceding value of the same array; this makes Excel report the calculation ...

  9. How to create a pivot table over a range containing dynamic...

    techcommunity.microsoft.com/discussions/excelgeneral/how-to-create-a-pivot...

    In Column E I have a dynamic array ` =UNIQUE(C4:C9)`. Now, I would like to create a pivot table whose data source is this dynamic array in Column E. When the height of the dynamic array changes (because the value of the raw data change), I would expect the pivot table to automatically adjust its data source to refer to the entire dynamic array.

  10. Append Additional Option Data Validation With Dynamic Arrays

    techcommunity.microsoft.com/discussions/excelgeneral/append-additional-option...

    One way (D2:E12 simulates your current dynamic array): 1) Create another dynamic array (in G2# above) that lists the unique countries in one column and "No Supplier" next to each entry. Formula in G2: =CHOOSE({1;2}, UNIQUE(INDEX(D2#,,1)), "No Supplier") 2) Combine your current dynamic array with the one created above. Formula in J2:

  11. Excel 365 SUM dynamic array at row level | Microsoft Community...

    techcommunity.microsoft.com/.../excel-365-sum-dynamic-array-at-row-level/2456557

    Dummy arr is the representation of an array that doesn't exist on a sheet, it's calculated in a LET expression and in reality can involve more columns and rows. Question: is there a way to i.e. SUM that array row by row and get the below Expected arr (not on a sheet)? Thanks (I posted the question yesterday at a time where the site had issues.