<?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>topic Re: How can I split a variable-depth, slash-delimited path_column field into separate col in KQL? in Eventhouse and KQL</title>
    <link>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4719983#M486</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need some help to understand what you are trying to accomplish.&lt;BR /&gt;&lt;BR /&gt;You are asking for a dynamic resultset (dynamic number of columns) based on the hierarchy column. And in the same time you don't want a variable number of columns due to fixed meta-data in Power BI.&lt;BR /&gt;&lt;BR /&gt;Perhaps I'm misunderstanding your question - please help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With that said, I can help you create 100 columns in the hierarchy, so you have enough columns almost no matter how deep the hierarchy becomes in the future.&lt;/P&gt;&lt;P&gt;Then you will have a fixed number of columns for Power Query and can go from there.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know what you think of above approach and if you can help me understand what you are asking &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Brian&lt;/P&gt;</description>
    <pubDate>Wed, 04 Jun 2025 14:42:03 GMT</pubDate>
    <dc:creator>datacoffee</dc:creator>
    <dc:date>2025-06-04T14:42:03Z</dc:date>
    <item>
      <title>How can I split a variable-depth, slash-delimited path_column field into separate col in KQL?</title>
      <link>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4719906#M485</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Q :&amp;nbsp;How can I split a variable-depth, slash-delimited path_column field into separate path_lvl_1, path_lvl_2, … columns in Kusto (Fabric) so that Power BI (in DirectQuery mode) can consume a fixed schema without requiring manual updates when the number of segments grows?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Details:&lt;/STRONG&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;My raw table is named data_table and has this schema:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;id_column : &lt;SPAN class=""&gt;string&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;device_column : &lt;SPAN class=""&gt;string&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;event_name : &lt;SPAN class=""&gt;string&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;data_type : &lt;SPAN class=""&gt;string&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;unit_column : &lt;SPAN class=""&gt;string&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;path_column : &lt;SPAN class=""&gt;string&lt;/SPAN&gt; // e.g. &lt;SPAN class=""&gt;"A/B/C/D"&lt;/SPAN&gt; &lt;SPAN class=""&gt;or&lt;/SPAN&gt; &lt;SPAN class=""&gt;"X/Y"&lt;/SPAN&gt; &lt;SPAN class=""&gt;or&lt;/SPAN&gt; &lt;SPAN class=""&gt;"Region/Zone/Section/Shelf/…"&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;value_column : &lt;SPAN class=""&gt;string&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;timestamp_column : datetime &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;static_flag : bool &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;message_type : &lt;SPAN class=""&gt;string&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;path_column can have an &lt;EM&gt;arbitrary&lt;/EM&gt; number of “/” segments—today might be 3 levels, tomorrow 10 or 50.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;We need Power BI (in DirectQuery) to see columns like:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;path_lvl_1, path_lvl_2, path_lvl_3, …, path_lvl_N &lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;where N grows automatically whenever any row’s path_column has more segments than before.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Approaches tried and limitations:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Split to a dynamic array&lt;/STRONG&gt; (extend segments_array = split(path_column, "/")) then client-side “List → Record → Expand.”&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Works in Import mode, but breaks in DirectQuery because the M step (using List.Count, Record.FromList, Expand) cannot fold.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Split into a fixed number of columns&lt;/STRONG&gt; (e.g. assume max of 10 levels via path_lvl_1 = iff(array_length(parts) &amp;gt;= 1, parts[0], ""), …, path_lvl_10 = iff(array_length(parts) &amp;gt;= 10, parts[9], "")).&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Works in DirectQuery, but if a row ever has 11 segments, you lose data beyond level 10—and must manually alter the function/table to add path_lvl_11.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;mv-expand + evaluate pivot&lt;/STRONG&gt; at query time for a truly dynamic set of columns.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;KQL function returns a result with as many columns as needed (0..max index), but the schema is not stable, so Power BI (DirectQuery) cannot bind to it.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;What I need:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;A way in Fabric/Kusto to produce a “wide” result that always has a fixed schema of path_lvl_1…path_lvl_N, &lt;EM&gt;automatically&lt;/EM&gt; increasing N whenever deeper paths appear—&lt;EM&gt;without&lt;/EM&gt; having to manually ALTER the table or function each time the maximum depth increases.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Ideally, a pure KQL solution (since DirectQuery won’t let me do client-side M transformations), or some Fabric feature I’m missing (update policies, etc.) that can “auto-add” new columns.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Why this matters:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;We want the Fabric → Power BI pipeline to be maintenance-free. If tomorrow a device reports&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;path_column&lt;/SPAN&gt; = &lt;SPAN class=""&gt;"A/B/C/D/E/F/G/H"&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;the next Power BI refresh should automatically see path_lvl_7 and path_lvl_8 without a manual “.alter table” or “re-publish function.”&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Actually I need these different columns to create hierarchy in one of power bi report. so that the dynamic schema can be handled properly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or if you can provide a solution to handle it at etl level, that will also work, like may be implementing any function or script so that if each time no of values getting inccreased in &lt;STRONG&gt;path_column, &lt;/STRONG&gt;then automatically functions or script run and creates same table with new schema with updated policy.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone in the Fabric community solved this? Is there a recommended pattern to handle truly variable-depth slash-delimited hierarchies in KQL so that downstream Power BI (DirectQuery) always sees a stable, “growing” set of path_lvl_X columns?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 13:02:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4719906#M485</guid>
      <dc:creator>ramankr48</dc:creator>
      <dc:date>2025-06-04T13:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: How can I split a variable-depth, slash-delimited path_column field into separate col in KQL?</title>
      <link>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4719983#M486</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need some help to understand what you are trying to accomplish.&lt;BR /&gt;&lt;BR /&gt;You are asking for a dynamic resultset (dynamic number of columns) based on the hierarchy column. And in the same time you don't want a variable number of columns due to fixed meta-data in Power BI.&lt;BR /&gt;&lt;BR /&gt;Perhaps I'm misunderstanding your question - please help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With that said, I can help you create 100 columns in the hierarchy, so you have enough columns almost no matter how deep the hierarchy becomes in the future.&lt;/P&gt;&lt;P&gt;Then you will have a fixed number of columns for Power Query and can go from there.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know what you think of above approach and if you can help me understand what you are asking &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Brian&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 14:42:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4719983#M486</guid>
      <dc:creator>datacoffee</dc:creator>
      <dc:date>2025-06-04T14:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: How can I split a variable-depth, slash-delimited path_column field into separate col in KQL?</title>
      <link>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4721308#M488</link>
      <description>&lt;P&gt;ok, let me clarify first the ETL part then we will go to BI part&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;We’re ingesting live data from&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Event Hub&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;into an Eventhouse kql table. One of the columns contains values separated by '/', like:&lt;/P&gt;&lt;P class=""&gt;047/Pass/fail/assure&lt;/P&gt;&lt;P class=""&gt;The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;number of segments&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;(separated by '/') is&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;not fixed&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;— it changes over time. I'd like to&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;split this column dynamically&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;into multiple columns (Col_1, Col_2, etc.) based on the number of values, and have the schema&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;auto-adjust&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;if more segments appear in future records. For example:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Row with 4 segments → Col_1 to Col_4&lt;/LI&gt;&lt;LI&gt;Row with 6 segments → auto-extend schema to Col_6, with missing values as null for shorter rows&lt;/LI&gt;&lt;/UL&gt;&lt;P class=""&gt;&lt;STRONG&gt;Can Eventhouse/KQL support dynamic schema creation or updates like this during ingestion?&lt;/STRONG&gt;&lt;BR /&gt;Or is there a best practice for handling this kind of variable structure using something else?&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 11:03:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4721308#M488</guid>
      <dc:creator>ramankr48</dc:creator>
      <dc:date>2025-06-05T11:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: How can I split a variable-depth, slash-delimited path_column field into separate col in KQL?</title>
      <link>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4722759#M492</link>
      <description>&lt;P&gt;Got it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;This KQL query works what you want. Notice the line with the pivot command - here you have the option to add the schema you need. The columns will then be added, even though you don't have a value for that column.&lt;BR /&gt;The Pivot them gives you the need to do an aggregation afterwards - so it becomes a bit messy.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I hope this help you. Below code, can be turned into a function if you need it&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="java"&gt;let T = datatable(row:string, values:string)
[
    "row01", "col1/col2/col3",
    "row02", "col1/col2/col3/col4",
    "row03", "col1/col2",
];
T
| extend ColSplit = split(values, "/")
| mv-expand splittedColumns = ColSplit
| extend SplittedColumnsToString = tostring(splittedColumns)
| evaluate pivot(SplittedColumnsToString, count()) : (row:string, values:string, ColSplit:dynamic , NumberOfColumns:int, splittedColumns:string , col1:string, col2:string,col3:string,col4:string,col5:string,col6:string)
| project-away ColSplit, NumberOfColumns, splittedColumns
| summarize col1 = max(col1), col2 = max(col2), col3 = max(col3), col4 = max(col4), col5 = max(col5), col6 = max(col6) by row, values&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 08:57:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4722759#M492</guid>
      <dc:creator>datacoffee</dc:creator>
      <dc:date>2025-06-06T08:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: How can I split a variable-depth, slash-delimited path_column field into separate col in KQL?</title>
      <link>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4727107#M498</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="913812" data-lia-user-login="ramankr48" class="lia-mention lia-mention-user"&gt;ramankr48&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;SPAN&gt;We would like to follow up to see if the solution provided by the super user resolved your issue. Please let us know if you need any further assistance.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;I&gt;&lt;STRONG&gt;If our super user response resolved your issue, please mark it as "Accept as solution" and click "Yes" if you found it helpful.&lt;/STRONG&gt;&lt;/I&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Prashanth Are&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;MS Fabric community support&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2025 15:52:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4727107#M498</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-06-13T15:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: How can I split a variable-depth, slash-delimited path_column field into separate col in KQL?</title>
      <link>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4731426#M501</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I don't think it will work if no of values gets increased in the values column, will it be feasible or change the schema on the fly&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2025 10:54:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4731426#M501</guid>
      <dc:creator>ramankr48</dc:creator>
      <dc:date>2025-06-13T10:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: How can I split a variable-depth, slash-delimited path_column field into separate col in KQL?</title>
      <link>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4731735#M502</link>
      <description>&lt;P&gt;Sure thing - just remove the column defintion fret the pivot function. Then the previous query will be dynamic&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2025 14:49:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4731735#M502</guid>
      <dc:creator>datacoffee</dc:creator>
      <dc:date>2025-06-13T14:49:42Z</dc:date>
    </item>
    <item>
      <title>Re: How can I split a variable-depth, slash-delimited path_column field into separate col in KQL?</title>
      <link>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4731779#M503</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/913812" target="_blank"&gt;@ramankr48&lt;/A&gt;&amp;nbsp;,&amp;nbsp;&lt;SPAN&gt;As we haven’t heard back from you, we wanted to kindly follow up to check if the issue got resolved? or let us know if you need any further assistance here?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Prashanth Are&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;MS Fabric community support&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2025 15:51:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4731779#M503</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-06-13T15:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: How can I split a variable-depth, slash-delimited path_column field into separate col in KQL?</title>
      <link>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4733840#M507</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="913812" data-lia-user-login="ramankr48" class="lia-mention lia-mention-user"&gt;ramankr48&lt;/a&gt;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As we haven’t heard back from you, we wanted to kindly follow up to check if the issue got resolved? or let us know if you need any further assistance here?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Prashanth Are&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;MS Fabric community support&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jun 2025 16:06:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4733840#M507</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-06-16T16:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: How can I split a variable-depth, slash-delimited path_column field into separate col in KQL?</title>
      <link>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4734633#M508</link>
      <description>&lt;P&gt;T&lt;BR /&gt;| extend ColSplit = split(values, "/")&lt;BR /&gt;| mv-expand ColIndex = range(0, array_length(ColSplit), 1)&lt;BR /&gt;| extend columnName = strcat("col", tostring(ColIndex + 1)), columnValue = ColSplit[ColIndex]&lt;BR /&gt;| evaluate pivot(columnName, any(columnValue))&lt;BR /&gt;| project-away ColSplit, ColIndex&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2025 10:04:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/How-can-I-split-a-variable-depth-slash-delimited-path-column/m-p/4734633#M508</guid>
      <dc:creator>ramankr48</dc:creator>
      <dc:date>2025-06-17T10:04:42Z</dc:date>
    </item>
  </channel>
</rss>

