<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Excel topics</title>
    <link>https://techcommunity.microsoft.com/t5/excel/bd-p/ExcelGeneral</link>
    <description>Excel topics</description>
    <pubDate>Thu, 21 May 2026 12:12:33 GMT</pubDate>
    <dc:creator>ExcelGeneral</dc:creator>
    <dc:date>2026-05-21T12:12:33Z</dc:date>
    <item>
      <title>Please allow this foundational concept for algorithms</title>
      <link>https://techcommunity.microsoft.com/t5/excel/please-allow-this-foundational-concept-for-algorithms/m-p/4521643#M258865</link>
      <description>&lt;P&gt;Hello dear friends of Excel.&lt;/P&gt;&lt;P&gt;Please let me begin by thanking you all for giving us the excellent tool that Ms Excel is.&lt;/P&gt;&lt;P&gt;I've being working practically my whole Computer Engineer career (~18 years) with this awesome tool, and I cannot imagine doing my work without it.&lt;BR /&gt;It really is excellent, and has been enhancing a lot in the last years.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this occasion I would like to ask you to consider including in Excel, native support for "empty arrays", that is, arrays that have "0" (zero) items.&lt;/P&gt;&lt;P&gt;This feature would help a lot in the following type of algorithms:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;When you have to scan a range of cells that hold the items of a set named "S", and&lt;/LI&gt;&lt;LI&gt;from that set you have to select only the items that satisfy a given condition { ALL i | such that CONDITION(i) = TRUE }, and&lt;/LI&gt;&lt;LI&gt;with those selected items (i) you have to construct a new vector named "V"&lt;/LI&gt;&lt;LI&gt;In this case you usually need to begin with an "empty array", that is the initial value before adding any selected item, and&lt;/LI&gt;&lt;LI&gt;at some point as you process the algorithm, maybe you will find the 1st. item to add to the "empty array"&lt;/LI&gt;&lt;LI&gt;Maybe you won't find any item that satisfy the condition, and at the end of the algorithm, you will end up with an "empty array" as a result.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;To illustrate this type of algorithm, let me put an example:&lt;/P&gt;&lt;DIV class="styles_lia-table-wrapper__h6Xo9 styles_table-responsive__MW0lN"&gt;&lt;table border="1" style="width: 49.8261%; height: 382px; border-width: 1px;"&gt;&lt;colgroup&gt;&lt;col style="width: 100%" /&gt;&lt;/colgroup&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;P&gt;=LET(&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;vector; SEQUENCE(10);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;new_vector; REDUCE(&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;vector;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;LAMBDA(building_vector;vector_i;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; IF(RESIDUO(vector_i;2)=1;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; VSTACK(building_vector; vector_i);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; building_vector&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;)&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;INDEX(new_vector;SEQUENCE(ROWS(new_vector) - 1) + 1)&lt;BR /&gt;&amp;nbsp; )&lt;/P&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/DIV&gt;&lt;UL&gt;&lt;LI&gt;This "algorithm", scans a set S = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }&lt;/LI&gt;&lt;LI&gt;from S, it selects only the "odd numbers" { ALL i | such that "i is odd" },&lt;/LI&gt;&lt;LI&gt;it takes every odd number and adds it to the array named "building_vector",&lt;/LI&gt;&lt;LI&gt;"building_vector" begins as a non-empty-array, holding "1 sentinel item" at the beginning of the algorithm (the number "0"),&lt;/LI&gt;&lt;LI&gt;at the end of the algorithm, I have to do a work-around, to remove manually the 1st. sentinel item from the array&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The cons of this approach are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;sometimes the resulting array will not have any selected item, that is, it will be an "empty array", and as such, Excel will generate an error showing #CALC!&lt;/LI&gt;&lt;LI&gt;as Excel doesn't currently support empty arrays, I have to do this workaround to add an initial sentinel item at the beginning of the algorithm, and then I have to remember to remove it at the end of it&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Dear friends of Excel, I consider empty arrays to be a "foundational concept for algorithms". It's like the "zero" for numbers, but for arrays.&lt;/P&gt;&lt;P&gt;It would be nice to be able to write this kind of algorithms with the aid of Excel, being able to natively support "empty arrays" without me having to do the extra work of handling a simulated situation of an empty array.&lt;/P&gt;&lt;P&gt;I present you this request, and I ask you to please consider the importance of this feature.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2026 18:25:46 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/please-allow-this-foundational-concept-for-algorithms/m-p/4521643#M258865</guid>
      <dc:creator>JuanjoB</dc:creator>
      <dc:date>2026-05-20T18:25:46Z</dc:date>
    </item>
    <item>
      <title>Forcing Gridlines to print through shaded cell formatting</title>
      <link>https://techcommunity.microsoft.com/t5/excel/forcing-gridlines-to-print-through-shaded-cell-formatting/m-p/4521334#M258847</link>
      <description>&lt;P&gt;I know how to force gridlines to print but if any cells are formatted with a fill shading in them, the gridlines will not print through them. Is there a way to print gridlines in formatted cells which are filled?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;No gridlines will print through the shaded cells.&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2026 20:22:57 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/forcing-gridlines-to-print-through-shaded-cell-formatting/m-p/4521334#M258847</guid>
      <dc:creator>NastyMcSnert</dc:creator>
      <dc:date>2026-05-19T20:22:57Z</dc:date>
    </item>
    <item>
      <title>Marie annecy casimir</title>
      <link>https://techcommunity.microsoft.com/t5/excel/marie-annecy-casimir/m-p/4521301#M258845</link>
      <description>&lt;P&gt;Why isn't AI&amp;nbsp; responding?&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2026 17:13:17 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/marie-annecy-casimir/m-p/4521301#M258845</guid>
      <dc:creator>Ade_Blo825</dc:creator>
      <dc:date>2026-05-19T17:13:17Z</dc:date>
    </item>
    <item>
      <title>RH</title>
      <link>https://techcommunity.microsoft.com/t5/excel/rh/m-p/4521237#M258843</link>
      <description>&lt;P&gt;Is it possible to select a color in Excel and highlight different cell by only clicking on them&amp;nbsp;and not selecting fill the whole time?&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2026 13:55:05 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/rh/m-p/4521237#M258843</guid>
      <dc:creator>RH_</dc:creator>
      <dc:date>2026-05-19T13:55:05Z</dc:date>
    </item>
    <item>
      <title>How to create a 2 line graph of paired values with a bar linking each pair?</title>
      <link>https://techcommunity.microsoft.com/t5/excel/how-to-create-a-2-line-graph-of-paired-values-with-a-bar-linking/m-p/4521011#M258839</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've create such a graph by accident. It's described as a "Line Graph with Markers".&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;How can I create a new one?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2026 08:36:30 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/how-to-create-a-2-line-graph-of-paired-values-with-a-bar-linking/m-p/4521011#M258839</guid>
      <dc:creator>Modanistas</dc:creator>
      <dc:date>2026-05-19T08:36:30Z</dc:date>
    </item>
    <item>
      <title>Logic Explanation</title>
      <link>https://techcommunity.microsoft.com/t5/excel/logic-explanation/m-p/4520880#M258836</link>
      <description>&lt;LI-CODE lang=""&gt;=IF(
    AND(
        [@[Group(without DM Converted/Created Contact)]] = "Marketing Lead",
        OR(
            A10739 = "John Doe",
            A10739 = "Jane Smith",
            A10739 = "Michael Johnson",
            A10739 = "Emily Davis"
        )
    ),
    IF(
        AND(
            XLOOKUP(
                [@[Converted Contact: Contact Id Safe]],
                'DM with AddOn Created COntacts'!E:E,
                'DM with AddOn Created COntacts'!F:F,
                "Sales Lead"
            ) = "Sales Lead",
            [@[First Form Fill Detail]] = "",
            [@[Last Form Fill Detail]] = ""
        ),
        "Sales Lead",
        "Marketing Lead"
    ),
    [@[Group(without DM Converted/Created Contact)]]
)&lt;/LI-CODE&gt;&lt;P&gt;Hi Excel Experts. I came across this formula from one of our resigned team members. can somebody explain how the logic works? I am just a simple photoshop user and was assigned to check this.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2026 19:00:21 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/logic-explanation/m-p/4520880#M258836</guid>
      <dc:creator>ExcelNewBie</dc:creator>
      <dc:date>2026-05-18T19:00:21Z</dc:date>
    </item>
    <item>
      <title>Slicer</title>
      <link>https://techcommunity.microsoft.com/t5/excel/slicer/m-p/4520719#M258831</link>
      <description>&lt;P&gt;Hi Expertises,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need your help again. I have pivot table as below. I need to capture the Product A sales amount under the following scenarios.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Filter. Select any one country in slicer&lt;/LI&gt;&lt;LI&gt;NO Filter. Select all country&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;My problem is when I add formula in text box like =B2, under scenario 1, the answer is correct no matter I select which country in slicer. However, for scenario 2, when i did not use filter, the total of Product A Sales amount should refer to B6 instead of B2. So, i got incorrect answer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;May i ask your advice in this case? Thanks a lot&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;BR /&gt;Lawrence&lt;/P&gt;&lt;DIV class="styles_lia-table-wrapper__h6Xo9 styles_table-responsive__MW0lN"&gt;&lt;table border="1" style="width: 100%; height: 183.333px; border-width: 1px;"&gt;&lt;colgroup&gt;&lt;col style="width: 33.3043%" /&gt;&lt;col style="width: 33.3043%" /&gt;&lt;col style="width: 33.3043%" /&gt;&lt;/colgroup&gt;&lt;tbody&gt;&lt;tr style="height: 34.6667px;"&gt;&lt;td style="height: 34.6667px;"&gt;Country&lt;/td&gt;&lt;td style="height: 34.6667px;"&gt;Product A Sales&lt;/td&gt;&lt;td style="height: 34.6667px;"&gt;Product B Sales&lt;/td&gt;&lt;/tr&gt;&lt;tr style="height: 34.6667px;"&gt;&lt;td style="height: 34.6667px;"&gt;AU&lt;/td&gt;&lt;td style="height: 34.6667px;"&gt;100&lt;/td&gt;&lt;td style="height: 34.6667px;"&gt;40&lt;/td&gt;&lt;/tr&gt;&lt;tr style="height: 44.6667px;"&gt;&lt;td style="height: 44.6667px;"&gt;&lt;P&gt;JP&lt;/P&gt;&lt;/td&gt;&lt;td style="height: 44.6667px;"&gt;80&lt;/td&gt;&lt;td style="height: 44.6667px;"&gt;60&lt;/td&gt;&lt;/tr&gt;&lt;tr style="height: 34.6667px;"&gt;&lt;td style="height: 34.6667px;"&gt;HK&lt;/td&gt;&lt;td style="height: 34.6667px;"&gt;60&lt;/td&gt;&lt;td style="height: 34.6667px;"&gt;80&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;KR&lt;/td&gt;&lt;td&gt;40&lt;/td&gt;&lt;td&gt;100&lt;/td&gt;&lt;/tr&gt;&lt;tr style="height: 34.6667px;"&gt;&lt;td style="height: 34.6667px;"&gt;Total&lt;/td&gt;&lt;td style="height: 34.6667px;"&gt;280&lt;/td&gt;&lt;td style="height: 34.6667px;"&gt;280&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 18 May 2026 13:40:47 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/slicer/m-p/4520719#M258831</guid>
      <dc:creator>Lawrence_Lam_320</dc:creator>
      <dc:date>2026-05-18T13:40:47Z</dc:date>
    </item>
    <item>
      <title>Excel can't open file from hyperlink after upgrade windows11</title>
      <link>https://techcommunity.microsoft.com/t5/excel/excel-can-t-open-file-from-hyperlink-after-upgrade-windows11/m-p/4520452#M258816</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I met a strang issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;After upgrade system from w10 to w11, my excel can't open linkage file which was working normal before.&lt;/P&gt;&lt;P&gt;Tested file and folder which located on local and SMB was not working, after click the hyper-lnik nothing happen and no pop-up just turn to mouse to loading icon then nothing happen how can I check which part cause this issue?&lt;/P&gt;&lt;P&gt;Also tested on word have same issue.&lt;/P&gt;&lt;P&gt;Further, url was working normal.&lt;/P&gt;</description>
      <pubDate>Sun, 17 May 2026 19:30:40 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/excel-can-t-open-file-from-hyperlink-after-upgrade-windows11/m-p/4520452#M258816</guid>
      <dc:creator>DavidTANG</dc:creator>
      <dc:date>2026-05-17T19:30:40Z</dc:date>
    </item>
    <item>
      <title>Excel Power Query: editing unloaded query refreshes dependent queries</title>
      <link>https://techcommunity.microsoft.com/t5/excel/excel-power-query-editing-unloaded-query-refreshes-dependent/m-p/4520329#M258806</link>
      <description>&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;There has been a change between version 2601 and 2602 on the Current channel which means that when editing a query in Power Query it will trigger a refresh for all dependent queries. This makes Power Query unusable for any complex queries or large data extraction.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Take the below example M code. SourceQuery is not loaded to the workbook or data model. LoadedQuery references SourceQuery and is loaded to the workbook.&lt;/P&gt;&lt;P&gt;Query: SourceQuery&lt;/P&gt;&lt;P&gt;let&lt;/P&gt;&lt;P&gt;Source = #table({"Col1"},{{"x"}})&lt;/P&gt;&lt;P&gt;in&lt;/P&gt;&lt;P&gt;Source&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Query: LoadedQuery&lt;/P&gt;&lt;P&gt;let&lt;/P&gt;&lt;P&gt;Source = SourceQuery&lt;/P&gt;&lt;P&gt;in&lt;/P&gt;&lt;P&gt;Source&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In version 2601 and previous versions, you could edit SourceQuery, 'close and load' Power Query and save your workbook almost instantly because no data was refreshed. In 2602 and later versions editing SourceQuery forces a refresh of LoadedQuery which can be very time consuming but more frustrating for all my complex/larger workbooks it triggers lots of refreshes which never finish and result in my having to end task on Excel (note: refreshing these queries takes less than 10 seconds). Doing an end task on all the mashup containers does not allow me to regain control of the Excel workbook. This means all changes to the workbook are lost. I have had to resort to using a VSCode extension to edit my Power Query without crashing Excel.&lt;/P&gt;&lt;P&gt;The builds I have tested are 2601 19628.20166 and 2602 19725.20190.&lt;/P&gt;&lt;P&gt;Are there any plans to rollback this change?&lt;/P&gt;&lt;P&gt;Other than rolling back my Outlook version or using VSCode are there any methods to edit my queries without crashing Excel?&lt;/P&gt;&lt;P&gt;It would also be helpful to understand why such a large change in functionality was not captured in the release notes. Per the release notes there were no changes to Excel in 2602, not even 'various fixes to functionality and performance'.&lt;/P&gt;&lt;P&gt;Many thanks, Andrew&lt;/P&gt;</description>
      <pubDate>Sat, 16 May 2026 13:15:53 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/excel-power-query-editing-unloaded-query-refreshes-dependent/m-p/4520329#M258806</guid>
      <dc:creator>ajlind25</dc:creator>
      <dc:date>2026-05-16T13:15:53Z</dc:date>
    </item>
    <item>
      <title>Data from a web page - error is "Access to the resource is forbidden."</title>
      <link>https://techcommunity.microsoft.com/t5/excel/data-from-a-web-page-error-is-quot-access-to-the-resource-is/m-p/4520309#M258802</link>
      <description>&lt;P&gt;Details: "Access to the resource is forbidden.", can anyone let me know how to resolve this error&lt;/P&gt;</description>
      <pubDate>Sat, 16 May 2026 08:16:39 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/data-from-a-web-page-error-is-quot-access-to-the-resource-is/m-p/4520309#M258802</guid>
      <dc:creator>Drane21</dc:creator>
      <dc:date>2026-05-16T08:16:39Z</dc:date>
    </item>
    <item>
      <title>Stop Excel auto formating</title>
      <link>https://techcommunity.microsoft.com/t5/excel/stop-excel-auto-formating/m-p/4520264#M258797</link>
      <description>&lt;P&gt;How do I stop Excel from automatically formatting cells?&amp;nbsp; I have three columns.&amp;nbsp; The first column is formatted currency with fill.&amp;nbsp; The second is text.&amp;nbsp; The third is general.&amp;nbsp; When tying a number in the general column Excel automatically formats the cell to currency with a fill matching the first column.&amp;nbsp; How can I stop Excel from automatically changing the formatting of the cells in the third column?&lt;/P&gt;</description>
      <pubDate>Fri, 15 May 2026 21:13:29 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/stop-excel-auto-formating/m-p/4520264#M258797</guid>
      <dc:creator>Brett1</dc:creator>
      <dc:date>2026-05-15T21:13:29Z</dc:date>
    </item>
    <item>
      <title>locked out
something is wrong</title>
      <link>https://techcommunity.microsoft.com/t5/excel/locked-out-something-is-wrong/m-p/4520161#M258793</link>
      <description>&lt;P&gt;locked out&lt;/P&gt;&lt;P&gt;something is wrong when i go to insert in to a cell it won;t let me and jumps to another cell but still cannot do an insert&lt;/P&gt;</description>
      <pubDate>Fri, 15 May 2026 14:46:07 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/locked-out-something-is-wrong/m-p/4520161#M258793</guid>
      <dc:creator>1967dunebuggy</dc:creator>
      <dc:date>2026-05-15T14:46:07Z</dc:date>
    </item>
    <item>
      <title>Countif problem</title>
      <link>https://techcommunity.microsoft.com/t5/excel/countif-problem/m-p/4520134#M258792</link>
      <description>&lt;P&gt;Hi - could someone advise please?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a workbook and am trying count the number of "Apples" in Col F, using $F$3:$F$81,"Apples" as the second criteria range and criteria. The first range and criteria is column B "Column1" is has mmm-yy and goes back a couple of years from Apr-24. I have tried COUNTIFS($B$3:$B$81,[@Column1],$f$3:$f$18,"Apples". Just doesnt seem to want to work. Any ideas? perhaps mmm-yy is an issue? thanks Noyman&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 May 2026 12:38:53 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/countif-problem/m-p/4520134#M258792</guid>
      <dc:creator>Noyman</dc:creator>
      <dc:date>2026-05-15T12:38:53Z</dc:date>
    </item>
    <item>
      <title>Excel Functions</title>
      <link>https://techcommunity.microsoft.com/t5/excel/excel-functions/m-p/4520128#M258791</link>
      <description>&lt;P&gt;Find attached a matrix, and picture below&lt;/P&gt;&lt;DIV class="styles_lia-table-wrapper__h6Xo9 styles_table-responsive__MW0lN"&gt;&lt;img /&gt;&lt;/DIV&gt;&lt;P&gt;I select Rare (0.5) in a cell and Modera (8) in another cell, i want function to return in a cell from matrix above. Like A (4) with green filled in. My inputs are Rare (0.5) and Moderate (8) and i want output cell to be Green filled in A (0.5) picked from matrix above. Like wise if the input cells are Possible (2) and Critical (50) then the output will be D (100) filled with light orange. I tried Index and Match function but failed.&lt;/P&gt;&lt;P&gt;I can send the excel if you want.&lt;/P&gt;&lt;P&gt;Please let me know what is the right function i have to use. Send the solution to &lt;A class="lia-external-url" href="mailto:email address removed for privacy reasons" target="_blank"&gt;mailto:email address removed for privacy reasons&lt;/A&gt; or email address removed for privacy reasons&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Fri, 15 May 2026 11:28:02 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/excel-functions/m-p/4520128#M258791</guid>
      <dc:creator>sethubalaji</dc:creator>
      <dc:date>2026-05-15T11:28:02Z</dc:date>
    </item>
    <item>
      <title>How to split Excel file into multiple files?</title>
      <link>https://techcommunity.microsoft.com/t5/excel/how-to-split-excel-file-into-multiple-files/m-p/4519924#M258789</link>
      <description>&lt;P&gt;I’m facing an issue with a very large Excel workbook and need some help. The file contains thousands of rows of data, and now it has become extremely slow to open, edit, and share through email. Sometimes Excel even freezes while working on it. Because of this, I want to split the Excel file into multiple smaller files, but I’m not sure how to do it properly without losing formatting or data.&lt;/P&gt;&lt;P&gt;I tried manually copying rows into separate files, but it is taking too much time and there are chances of missing important records. I also searched online for solutions, but most methods seem complicated or only work for small datasets.&lt;/P&gt;&lt;P&gt;This Excel file is very important for my office work, and I need a reliable way to divide it into multiple files based on rows or column values. If anyone knows an easy method, VBA solution, or any trustworthy tool that can split Excel files automatically, please share the steps. Any help would be greatly appreciated!&lt;/P&gt;</description>
      <pubDate>Fri, 15 May 2026 05:12:57 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/how-to-split-excel-file-into-multiple-files/m-p/4519924#M258789</guid>
      <dc:creator>kylen955</dc:creator>
      <dc:date>2026-05-15T05:12:57Z</dc:date>
    </item>
    <item>
      <title>A little help on text grouping delimited by nulls in a data set in power query</title>
      <link>https://techcommunity.microsoft.com/t5/excel/a-little-help-on-text-grouping-delimited-by-nulls-in-a-data-set/m-p/4519851#M258783</link>
      <description>&lt;P&gt;A have a column in power query:&lt;/P&gt;&lt;P&gt;null&lt;BR /&gt;line of text&lt;BR /&gt;line of text&lt;BR /&gt;line of text&lt;BR /&gt;null&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The number of rows with lines of text can vary, but each "text block" is delimited by column entries at the top and bottom that contain 'null'.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ultimately, I would like to take each text block and populate a single cell with it. Probably in a new column in an excel table. Can I get a nudge in the right direction?&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2026 19:52:01 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/a-little-help-on-text-grouping-delimited-by-nulls-in-a-data-set/m-p/4519851#M258783</guid>
      <dc:creator>Dan_TWE</dc:creator>
      <dc:date>2026-05-14T19:52:01Z</dc:date>
    </item>
    <item>
      <title>How to remove floating Copilot icon?</title>
      <link>https://techcommunity.microsoft.com/t5/excel/how-to-remove-floating-copilot-icon/m-p/4519815#M258780</link>
      <description>&lt;P&gt;How do I remove this from Excel? There's no option to remove it in Excel and our IT Department can't find the setting on the Office 365 portal. I do not want to "dock" it, I want in permanently removed.&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2026 17:36:54 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/how-to-remove-floating-copilot-icon/m-p/4519815#M258780</guid>
      <dc:creator>rcrafts</dc:creator>
      <dc:date>2026-05-14T17:36:54Z</dc:date>
    </item>
    <item>
      <title>Problem:
Excel opened the first file quickly, but the second and subsequent files very slowly</title>
      <link>https://techcommunity.microsoft.com/t5/excel/problem-excel-opened-the-first-file-quickly-but-the-second-and/m-p/4519632#M258775</link>
      <description>&lt;P&gt;Problem:&lt;BR /&gt;Excel opened the first file quickly, but the second and subsequent files opened very slowly when launched externally (double click from Explorer or using excel.exe "file.xlsx").&lt;/P&gt;&lt;P&gt;Environment:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Windows 11 Pro 25H2&lt;/LI&gt;&lt;LI&gt;Office 2021 Pro Plus&lt;/LI&gt;&lt;LI&gt;Clean Windows installation&lt;/LI&gt;&lt;LI&gt;Clean Office installation&lt;/LI&gt;&lt;LI&gt;Modern hardware (Intel 13th gen + NVIDIA RTX)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Symptoms:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;First Excel file opened fast&lt;/LI&gt;&lt;LI&gt;Second and subsequent files became progressively slower&lt;/LI&gt;&lt;LI&gt;Opening files from inside Excel was always fast&lt;/LI&gt;&lt;LI&gt;Drag &amp;amp; drop from Explorer into an existing Excel window was fast&lt;/LI&gt;&lt;LI&gt;Word did NOT have the problem&lt;/LI&gt;&lt;LI&gt;Reinstalling Office did not solve it&lt;/LI&gt;&lt;LI&gt;Disabling Defender, Protected View, StartAllBack etc. did not solve it&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Cause:&lt;BR /&gt;Registry DDE handler related to Excel shell open behavior.&lt;/P&gt;&lt;P&gt;Registry key:&lt;BR /&gt;HKEY_CLASSES_ROOT\Excel.Sheet.12\shell\Open\ddeexec&lt;/P&gt;&lt;P&gt;The (Default) value was empty.&lt;/P&gt;&lt;P&gt;Fix:&lt;BR /&gt;Set (Default) to:&lt;/P&gt;&lt;P&gt;[open("%1")]&lt;/P&gt;&lt;P&gt;Then reboot Windows.&lt;/P&gt;&lt;P&gt;After that:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;multiple Explorer launches became instant again&lt;/LI&gt;&lt;LI&gt;no more progressive slowdown&lt;/LI&gt;&lt;LI&gt;Excel external opening worked normally again&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Important note:&lt;BR /&gt;On other healthy machines the value may still appear empty, so the fix may actually force Windows/Excel to rebuild or refresh the COM/DDE association/cache rather than the value itself being universally required.&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2026 07:59:26 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/problem-excel-opened-the-first-file-quickly-but-the-second-and/m-p/4519632#M258775</guid>
      <dc:creator>ENRIC121212</dc:creator>
      <dc:date>2026-05-14T07:59:26Z</dc:date>
    </item>
    <item>
      <title>Line chart dynamic scaling of Y-axis</title>
      <link>https://techcommunity.microsoft.com/t5/excel/line-chart-dynamic-scaling-of-y-axis/m-p/4519608#M258774</link>
      <description>&lt;P&gt;Micro$oft, please, please, pretty please with sugar on top, END the ensh*ttification, and get the Y-axis of a line chart to dyanmically scale with the data range that is being plotted. The range defaults to 0 as the lowest Y-value. The only way to change it, is to manually set the ax range, or use a work-around involving VBA. So... NO! This is crazy!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It should be easy as apple pie for you lot to add an option to dynamically scale the Y-range in the chart, but I guess you are far too busy pushing people onto your crappy AI, which you can really stick some place the sun doesn't shine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2026 07:18:40 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/line-chart-dynamic-scaling-of-y-axis/m-p/4519608#M258774</guid>
      <dc:creator>Chef2000</dc:creator>
      <dc:date>2026-05-14T07:18:40Z</dc:date>
    </item>
    <item>
      <title>XIRR</title>
      <link>https://techcommunity.microsoft.com/t5/excel/xirr/m-p/4519438#M258769</link>
      <description>&lt;P&gt;I saw a tape from Excel University's trainer Jeff Lenning. I copied his data for irregular timing, but I get completely different results:&lt;/P&gt;&lt;P&gt;He gets 9.60%, I get 0.095736495.&lt;/P&gt;&lt;P&gt;Is the excel version a factor?&lt;/P&gt;&lt;P&gt;Any other explanation?&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2026 17:01:08 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/excel/xirr/m-p/4519438#M258769</guid>
      <dc:creator>gdegaude</dc:creator>
      <dc:date>2026-05-13T17:01:08Z</dc:date>
    </item>
  </channel>
</rss>

