<?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>New board topics in Microsoft Fabric Community</title>
    <link>https://community.fabric.microsoft.com/t5/</link>
    <description>Microsoft Fabric Community</description>
    <pubDate>Wed, 16 Sep 2026 19:16:48 GMT</pubDate>
    <dc:creator>Community</dc:creator>
    <dc:date>2026-09-16T19:16:48Z</dc:date>
    <item>
      <title>Dynamic Show/Hide of Legend Images Based on Slicer Selection (Native Power BI Only)</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-Show-Hide-of-Legend-Images-Based-on-Slicer-Selection/m-p/5367381#M1475634</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to implement a dynamic legend in Power BI based on the selected indicator in a slicer, and I'd like to know if there is a native Power BI solution for this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Current setup&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A slicer based on Topic[INDICATOR_FR]&lt;/P&gt;&lt;P&gt;A data table OLN_Combined&lt;/P&gt;&lt;P&gt;A field OLN_Combined[IND_INTE] that determines which legend should be displayed&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The value of IND_INTE can be:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1 or -1&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;Business rule&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When the selected indicator has:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IND_INTE = 1 or -1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Display Legend 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Legend 1 contains:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Red = Similar&lt;/P&gt;&lt;P&gt;Blue = Better&lt;/P&gt;&lt;P&gt;Green = Worse&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When the selected indicator has:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IND_INTE = 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Display Legend 2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Legend 2 contains:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Red = Similar&lt;/P&gt;&lt;P&gt;Yellow = Different&lt;/P&gt;&lt;P&gt;What I've tried&lt;/P&gt;&lt;P&gt;Option 1: Shapes / Images in the Selection Pane&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I inserted both images using Insert &amp;gt; Image and grouped them in the Selection Pane.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I cannot find any way to conditionally control the visibility of these objects using a DAX measure. The available formatting options only include things like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Background&lt;/P&gt;&lt;P&gt;Border&lt;/P&gt;&lt;P&gt;Shadow&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There doesn't appear to be any conditional visibility setting.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Option 2: Buttons containing the images&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also considered using buttons with the images as backgrounds, but I couldn't find a way to dynamically show/hide buttons based on a measure either.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Option 3: Image URL table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created a table containing the image URLs and categorized the field as Image URL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This works in a Table visual, and the correct image can be filtered using a measure such as:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ShowImage =&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;VAR SelectedType =IF(SELECTEDVALUE(OLN_Combined[IND_INTE]) IN { -1, 1 },1,0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;RETURN&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IF(MAX(Legends[TypeLegend]) = SelectedType,1,0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The image is displayed inside a Table visual.&lt;/P&gt;&lt;P&gt;Styling and sizing options are limited.&lt;/P&gt;&lt;P&gt;Ideally, I would like the image to behave like a regular image object on the canvas.&lt;/P&gt;&lt;P&gt;My question&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way, using native Power BI only (no custom visuals), to:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dynamically show/hide image objects based on a slicer selection and a DAX measure?&lt;/P&gt;&lt;P&gt;Dynamically switch between two image files based on a measure?&lt;/P&gt;&lt;P&gt;Display an Image URL as a standalone image visual (not inside a Table or Matrix)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If not, what is the recommended native Power BI approach for implementing dynamic legends like this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 18:49:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Dynamic-Show-Hide-of-Legend-Images-Based-on-Slicer-Selection/m-p/5367381#M1475634</guid>
      <dc:creator>DrRegiste</dc:creator>
      <dc:date>2026-09-16T18:49:33Z</dc:date>
    </item>
    <item>
      <title>Month on Month difference table visual that's sortable</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Month-on-Month-difference-table-visual-that-s-sortable/m-p/5367371#M1475633</link>
      <description>&lt;P&gt;Newbie here so bear with me.&lt;BR /&gt;I want to create a visual like this&lt;/P&gt;&lt;img /&gt;&lt;P&gt;I've done it using a matrix but only the total column is sortable and I need it to be sortable on all columns.&lt;BR /&gt;Carrying on with the example, the raw data would have multiple entries each day for each breed of each species.&lt;BR /&gt;&lt;BR /&gt;Any ideas?&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 17:53:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Month-on-Month-difference-table-visual-that-s-sortable/m-p/5367371#M1475633</guid>
      <dc:creator>OffColour1972</dc:creator>
      <dc:date>2026-09-16T17:53:55Z</dc:date>
    </item>
    <item>
      <title>Using LookUpValue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-LookUpValue/m-p/5367370#M188514</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I created a calculated column and trying to use the LookUpValue function and am receiving the following error&lt;/P&gt;&lt;P&gt;Underlying Error: DataViewMappingError_ConditionNotHierarchicallyRelated&lt;/P&gt;&lt;P&gt;Activity ID: 77181316-2e02-44ea-b104-201ac8d72366&lt;/P&gt;&lt;P&gt;Also, I am getting an error on my visual saying "You are using fields that don't have a supported set of relationships". Not seeing the issue as I have used this LookUpValue function before.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 17:53:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-LookUpValue/m-p/5367370#M188514</guid>
      <dc:creator>greenda4</dc:creator>
      <dc:date>2026-09-16T17:53:13Z</dc:date>
    </item>
    <item>
      <title>Data Factory definition</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Data-Factory-definition/m-p/5367369#M302458</link>
      <description>&lt;P&gt;Hi, as i set up a data movement (etl/elt not versioning) pipeline in fabric, i become more aware of definitions.&amp;nbsp; &amp;nbsp;Am i in "data factory" when adding such a pipeline to my fabric ws or is the notion of data factory more specific to components like data flow gen2 or is data factory none of these things?&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 17:52:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Data-Factory-definition/m-p/5367369#M302458</guid>
      <dc:creator>db042190</dc:creator>
      <dc:date>2026-09-16T17:52:16Z</dc:date>
    </item>
    <item>
      <title>E-Commerce Sales Analysis</title>
      <link>https://community.fabric.microsoft.com/t5/Themes-Gallery/E-Commerce-Sales-Analysis/m-p/5367368#M6064</link>
      <description>&lt;P&gt;I've been building an e-commerce analytics report in Power BI covering 48,000 transactions, 4,000 customers and 101 software products (Apr 2024 – Oct 2025). It now has five pages: Executive Summary, Customer Loyalty, Revenue Drivers, Customer Health &amp;amp; Retention, and Refunds &amp;amp; Promotions.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Some of the insights the data surfaced:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Annual plans drive the business.&lt;/STRONG&gt; They're 49% of orders but 88% of revenue, and each annual order is worth 10× a monthly one.&lt;BR /&gt;&lt;STRONG&gt;Big deals matter most.&lt;/STRONG&gt; Orders of 10+ seats are 29% of volume but 70% of revenue.&lt;BR /&gt;&lt;STRONG&gt;Revenue is concentrated.&lt;/STRONG&gt; 38 of 101 products generate 80% of revenue.&lt;BR /&gt;&lt;STRONG&gt;Retention is strong.&lt;/STRONG&gt; About 85% of customers keep buying each quarter, but new customer acquisition almost stopped in 2025.&lt;BR /&gt;&lt;STRONG&gt;There's a clear win-back list.&lt;/STRONG&gt; 492 high-value customers have gone quiet, and together they hold $5.9M of lifetime revenue.&lt;BR /&gt;&lt;STRONG&gt;Over half of refunds are preventable.&lt;/STRONG&gt; 56% of refunded revenue came from billing errors and duplicate orders.&lt;BR /&gt;&lt;STRONG&gt;Promo codes are leaking.&lt;/STRONG&gt; Welcome codes were reused on ~5,000 repeat orders ($319K in discounts), and 89% of Black Friday codes were redeemed outside Nov–Dec.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;What I used:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;DAX for RFM segmentation, cohort retention, like-for-like YoY and Pareto analysis&lt;/LI&gt;
&lt;LI&gt;Deneb (Vega-Lite) for custom visuals: Pareto chart, cohort heatmap, dumbbell chart, refund hotspot matrix&lt;/LI&gt;
&lt;LI&gt;HTML Content visuals for KPI tiles with sparklines and dynamic insight cards&lt;/LI&gt;
&lt;LI&gt;SVG measures to put data bars and bullet charts inside tables&lt;/LI&gt;
&lt;LI&gt;A consistent custom theme, background and typography across every page&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Lesson learned:&lt;/STRONG&gt; auditing the model before adding visuals paid off. It caught a discount measure totaling $61.9B instead of $1.26M, discount rates above 100%, and tax counted twice in gross revenue.&lt;/P&gt;
&lt;P&gt;Feedback welcome!&lt;/P&gt;
&lt;P&gt;#PowerBI #DataAnalytics #DAX #Deneb #DataVisualization #Ecommerce #BusinessIntelligence&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 17:47:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Themes-Gallery/E-Commerce-Sales-Analysis/m-p/5367368#M6064</guid>
      <dc:creator>FarhanJeelani</dc:creator>
      <dc:date>2026-09-16T17:47:01Z</dc:date>
    </item>
    <item>
      <title>Advice on number of medallion layers in fabric pipeline</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Advice-on-number-of-medallion-layers-in-fabric-pipeline/m-p/5367367#M302457</link>
      <description>&lt;P&gt;Hi , in the prototype im setting up, my fabric pipeline lands the rawest data in the bronze layer and should soon land curated data in the silver using meta data from json to map raw column names to target column names.&lt;/P&gt;&lt;P&gt;i was hoping to take advantage in silver of 1) data typing when target is a table 2) other very common hoops like dealing with duplicates 3) rollback features available in notebooks, i think notebook uses a different term.&lt;/P&gt;&lt;P&gt;As i move forward, i'm noticing that the api's (off the shelf from sap in this case) im using in the bronze layer sometimes wrap/append their own weird things around/to column values...in this case the word "date" with the date value and possibly other non date related characters and possibly a special date format.&lt;/P&gt;&lt;P&gt;I dont want to couple erp specific transform logic (like this date parsing) with more cookie cutter transforms i had planned for the notebook in the silver layer.&amp;nbsp; I think i'd rather add another layer maybe with a metal more valuable than bronze but less valuable than silver, eg copper.&amp;nbsp; Any thoughts, i mean on having 4 layers in a medallion architecture, not the choice of copper?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 17:46:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Advice-on-number-of-medallion-layers-in-fabric-pipeline/m-p/5367367#M302457</guid>
      <dc:creator>db042190</dc:creator>
      <dc:date>2026-09-16T17:46:10Z</dc:date>
    </item>
    <item>
      <title>notebookutils.fs.cp() cannot copy from Lakehouse shortcut to Files in Python notebook</title>
      <link>https://community.fabric.microsoft.com/t5/Fabric-platform/notebookutils-fs-cp-cannot-copy-from-Lakehouse-shortcut-to-Files/m-p/5367366#M30612</link>
      <description>&lt;P&gt;I've been playing around with notebookutils.fs.cp() and notebookutils.fs.fastcp() in Fabric Python 3.12 notebooks.&lt;/P&gt;&lt;P&gt;This function seems to be unable to copy a file (e.g. PDF) from a SharePoint folder behind a Lakehouse shortcut to a directory in the Lakehouse Files. This produces a AzCopyFailedException.&lt;/P&gt;&lt;P&gt;Somewhat strangely, it is possible to use fs.cp() and fs.fastcp() to copy files from the shortcut to local file storage in the notebook environment and to then copy from this local file storage to the Lakehouse Files.&lt;/P&gt;&lt;P&gt;Has anyone come across a similar issue?&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 17:39:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Fabric-platform/notebookutils-fs-cp-cannot-copy-from-Lakehouse-shortcut-to-Files/m-p/5367366#M30612</guid>
      <dc:creator>svencken</dc:creator>
      <dc:date>2026-09-16T17:39:56Z</dc:date>
    </item>
    <item>
      <title>Post is taken down after ~ 1 minute.</title>
      <link>https://community.fabric.microsoft.com/t5/Community-Feedback/Post-is-taken-down-after-1-minute/m-p/5367358#M13635</link>
      <description>&lt;P&gt;I have a question about Power BI desktop canvas default layout that has somehow gotten changed.&amp;nbsp; Every time I post my question it is taken down within about a minute.&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 16:40:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Community-Feedback/Post-is-taken-down-after-1-minute/m-p/5367358#M13635</guid>
      <dc:creator>dcrow5378</dc:creator>
      <dc:date>2026-09-16T16:40:46Z</dc:date>
    </item>
    <item>
      <title>How to submit a support ticket for Power BI issues.</title>
      <link>https://community.fabric.microsoft.com/t5/Service/How-to-submit-a-support-ticket-for-Power-BI-issues/m-p/5367356#M302455</link>
      <description>&lt;P&gt;Can anyone please advise how to submit a support ticket for issues with Power BI desktop?&lt;BR /&gt;Previously I went through the Power Platform admin center, but this is not working currently.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 16:37:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/How-to-submit-a-support-ticket-for-Power-BI-issues/m-p/5367356#M302455</guid>
      <dc:creator>dcrow5378</dc:creator>
      <dc:date>2026-09-16T16:37:07Z</dc:date>
    </item>
    <item>
      <title>Question Being Taken Down?  I have asked this 3 times and is removed within 1 minute?</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Question-Being-Taken-Down-I-have-asked-this-3-times-and-is/m-p/5367346#M1475625</link>
      <description>&lt;P&gt;Default Report Canvas Layout changed and all visuals have changed.&amp;nbsp; Did I inadvertently change a setting?&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 16:19:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Question-Being-Taken-Down-I-have-asked-this-3-times-and-is/m-p/5367346#M1475625</guid>
      <dc:creator>dcrow5378</dc:creator>
      <dc:date>2026-09-16T16:19:30Z</dc:date>
    </item>
    <item>
      <title>Desktop Report Canvas Zoomed Out and Visuals Changed</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Desktop-Report-Canvas-Zoomed-Out-and-Visuals-Changed/m-p/5367338#M1475620</link>
      <description>&lt;P&gt;Has anyone noticed with the recent update that the report canvas is zoomed out and the visuals have no formatting by default.&amp;nbsp; Did I inadvertently select something that would cause this?&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 16:12:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Desktop-Report-Canvas-Zoomed-Out-and-Visuals-Changed/m-p/5367338#M1475620</guid>
      <dc:creator>dcrow5378</dc:creator>
      <dc:date>2026-09-16T16:12:32Z</dc:date>
    </item>
    <item>
      <title>Employee Internal Communication Analytics | DataFlip</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Employee-Internal-Communication-Analytics-DataFlip/m-p/5367336#M16526</link>
      <description>&lt;P&gt;Poor internal communication can create information gaps, disconnected teams, and slower decisions. When communication data is spread across different reports, leaders often struggle to understand how teams engage and collaborate. This dashboard brings internal communication data into one clear view, helping organizations improve engagement and workplace collaboration.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Business Impact:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;This dashboard helps organizations:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Track email engagement, open rates, and sentiment&lt;/LI&gt;&lt;LI&gt;Understand communication patterns across departments and seniority levels&lt;/LI&gt;&lt;LI&gt;Identify communication trends by department, topic, and day&lt;/LI&gt;&lt;LI&gt;Monitor after-hours and weekend communication activity&lt;/LI&gt;&lt;LI&gt;Identify communication gaps and collaboration silos&lt;/LI&gt;&lt;LI&gt;Support better employee engagement and workforce decisions&lt;/LI&gt;&lt;LI&gt;Reduce manual reporting with centralized communication KPIs&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;It helps leaders understand communication patterns and build a more connected, engaged, and productive workplace.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Who Can Use This Template:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;HR and People Operations Teams&lt;/LI&gt;&lt;LI&gt;Internal Communications Leaders&lt;/LI&gt;&lt;LI&gt;Department Heads and Senior Managers&lt;/LI&gt;&lt;LI&gt;Employee Experience Teams&lt;/LI&gt;&lt;LI&gt;Executive Leadership Teams&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Discover more insight-driven templates built for real business decisions. Visit &lt;A class="lia-external-url" href="http://www.dataflip.co" target="_blank"&gt;DataFlip&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 16:12:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Employee-Internal-Communication-Analytics-DataFlip/m-p/5367336#M16526</guid>
      <dc:creator>dataflip</dc:creator>
      <dc:date>2026-09-16T16:12:05Z</dc:date>
    </item>
    <item>
      <title>Heat or contour map visual</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Heat-or-contour-map-visual/m-p/5367335#M1475619</link>
      <description>&lt;P&gt;Anyone have a nice solution for a heat map visual in Power BI? I find the heatmap settings on the default Azure Maps to be a bit lacking as it doesn't really reflect the density of points in an area. There used to be a very nice free visual literally called "Heatmap" but now you've to pay for a Bing Maps Enterprise key to use it. The "Data Map" visual also has a nice enough heatmap setting which I used to use with an Open Street Map base layer but now OSM keeps blocking access in PowerBI citing the tile usage policy.&lt;/P&gt;&lt;P&gt;Looking for suggestions, ideally free, or any indication that there's plans to improve the Azure map heatmap option.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 16:06:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Heat-or-contour-map-visual/m-p/5367335#M1475619</guid>
      <dc:creator>am_nr</dc:creator>
      <dc:date>2026-09-16T16:06:53Z</dc:date>
    </item>
    <item>
      <title>Desktop Report Zoomed out and Visuals Changed</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Desktop-Report-Zoomed-out-and-Visuals-Changed/m-p/5367334#M1475618</link>
      <description>&lt;P&gt;Has anyone else noticed with the latest update that the desktop report layout is zoomed out and the visuals have no formatting applied by default.&amp;nbsp; Did I inadvertently select an option that would change the default view/layout?&amp;nbsp; Notice the card visual is sideways?&amp;nbsp; The default zoom I've seen is around 60-80%.&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 16:03:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Desktop-Report-Zoomed-out-and-Visuals-Changed/m-p/5367334#M1475618</guid>
      <dc:creator>dcrow5378</dc:creator>
      <dc:date>2026-09-16T16:03:47Z</dc:date>
    </item>
    <item>
      <title>Unable to Access Microsoft Fabric Trial</title>
      <link>https://community.fabric.microsoft.com/t5/Fabric-platform/Unable-to-Access-Microsoft-Fabric-Trial/m-p/5367322#M30606</link>
      <description>&lt;P&gt;Hello Support Team,&lt;/P&gt;&lt;P&gt;I am facing an issue with the Microsoft Fabric trial on my tenant (ZOHOMAIL.IN).&lt;/P&gt;&lt;P&gt;- **Issue faced:**&lt;/P&gt;&lt;P&gt;I created a new account and attempted to start the Fabric trial. However, instead of the Fabric trial capacity being provisioned, only a **Power BI Pro trial** was activated. My goal was to use the Fabric trial to create and test Lakehouse functionality.&lt;/P&gt;&lt;P&gt;- **Steps taken to fix:**&lt;/P&gt;&lt;P&gt;1. I tried creating a Lakehouse, but received an error message related to trial capacity.&lt;/P&gt;&lt;P&gt;2. I attempted multiple troubleshooting steps, including checking the Admin Portal and workspace assignment options, but none resolved the issue.&lt;/P&gt;&lt;P&gt;3. Finally, I cancelled the free trial, hoping to restart it correctly.&lt;/P&gt;&lt;P&gt;- **Current issue still existing:**&lt;/P&gt;&lt;P&gt;After cancellation, I am unable to restart the trial. The **Start trial** option is no longer visible in the Account Manager panel. At present, neither the Fabric trial nor the Power BI Pro trial is available for my tenant. This prevents me from testing Fabric features such as Lakehouse creation.&lt;/P&gt;&lt;P&gt;Could you please help reinstate the Fabric trial for my tenant, or confirm if the only option is to create a new tenant to access the trial again?&lt;/P&gt;&lt;P&gt;Thank you for your assistance.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Suraj Nimse&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 15:18:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Fabric-platform/Unable-to-Access-Microsoft-Fabric-Trial/m-p/5367322#M30606</guid>
      <dc:creator>surajnimse</dc:creator>
      <dc:date>2026-09-16T15:18:23Z</dc:date>
    </item>
    <item>
      <title>Matrix with stacked bar chart and with column measures</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Matrix-with-stacked-bar-chart-and-with-column-measures/m-p/5367321#M1475616</link>
      <description>&lt;P&gt;I am trying to build a matrix that will have a stacked bar chart as a column, together with two other columns (i.e, measures).&amp;nbsp; See screenshot.&amp;nbsp; The red/yellow/green colors are defined by a category field that is already defined in the model.&amp;nbsp; &amp;nbsp;Is a matrix like this even possible?&amp;nbsp; Do I need to use svg codes inside of DAX measures?&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 15:18:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Matrix-with-stacked-bar-chart-and-with-column-measures/m-p/5367321#M1475616</guid>
      <dc:creator>ldwf</dc:creator>
      <dc:date>2026-09-16T15:18:19Z</dc:date>
    </item>
    <item>
      <title>Can I get confirmation from a PBI Admin that this is up to date?</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Can-I-get-confirmation-from-a-PBI-Admin-that-this-is-up-to-date/m-p/5367319#M302450</link>
      <description>&lt;P&gt;I have been given Power BI admin access recently by my organization. I am trying to find out how to create apps and pipelines from workspaces. I see this documention by microsoft:&lt;BR /&gt;&lt;A class="lia-external-url" href="https://learn.microsoft.com/en-us/power-bi/collaborate-share/service-create-distribute-apps" target="_blank"&gt;https://learn.microsoft.com/en-us/power-bi/collaborate-share/service-create-distribute-apps&lt;/A&gt;&lt;/P&gt;&lt;P&gt;But I do not see those "create app" and "create pipeline" buttons shown. Is this documentation out of date and there is another way to do this? Or do I maybe not actually have the needed access yet?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 15:06:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Can-I-get-confirmation-from-a-PBI-Admin-that-this-is-up-to-date/m-p/5367319#M302450</guid>
      <dc:creator>grayscg</dc:creator>
      <dc:date>2026-09-16T15:06:14Z</dc:date>
    </item>
    <item>
      <title>FABRIC REST API Connections - Create Connection</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Science/FABRIC-REST-API-Connections-Create-Connection/m-p/5367317#M1472</link>
      <description>&lt;P&gt;Does anyone know how to run this API via a PowerShell script to create a SQL Server cloud connection for a semantic model using Service Principal authentication?&lt;/P&gt;&lt;P&gt;Here's what I have so far:&lt;/P&gt;&lt;P&gt;Invoke-PowerBIRestMethod -Url "https://api.fabric.microsoft.com/v1/connections" -Method Post -Body $body&lt;/P&gt;&lt;P&gt;But I don't understand how to construct the body&lt;/P&gt;&lt;P&gt;Thanks in Advance,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Charline&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 14:29:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Science/FABRIC-REST-API-Connections-Create-Connection/m-p/5367317#M1472</guid>
      <dc:creator>Charline_74</dc:creator>
      <dc:date>2026-09-16T14:29:45Z</dc:date>
    </item>
    <item>
      <title>Power BI Service Home – Recent items sometimes not showing</title>
      <link>https://community.fabric.microsoft.com/t5/Service/Power-BI-Service-Home-Recent-items-sometimes-not-showing/m-p/5367286#M302443</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;I'm facing an intermittent issue with the &lt;STRONG&gt;Power BI Service Home page&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Normally, under &lt;STRONG&gt;Home → Recent&lt;/STRONG&gt;, I can see the reports and workspaces that I recently opened, along with the &lt;STRONG&gt;Opened&lt;/STRONG&gt; time and &lt;STRONG&gt;Location&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;However, sometimes the &lt;STRONG&gt;Recent section does not show the recently opened reports/items&lt;/STRONG&gt;, even though I have opened reports normally.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Issue:&lt;/STRONG&gt;&lt;BR /&gt;The Recent list is sometimes empty/not populated or doesn't appear to update.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Environment:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Power BI Service (Web)&lt;/LI&gt;&lt;LI&gt;Browser: Microsoft Edge / Google Chrome&lt;/LI&gt;&lt;LI&gt;Issue is intermittent&lt;/LI&gt;&lt;LI&gt;Reports are located in Power BI Workspaces&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Has anyone else experienced this issue with the &lt;STRONG&gt;Power BI Service Home → Recent&lt;/STRONG&gt; section?&lt;/P&gt;&lt;P&gt;Is this related to a Power BI Service issue, browser/session/cache issue, or some limitation with how the Recent list is populated?&lt;/P&gt;&lt;P&gt;Any information on how the Recent list is generated and how to troubleshoot this would be appreciated.&lt;/P&gt;&lt;P&gt;I'd also attach &lt;STRONG&gt;the screenshot you sent me&lt;/STRONG&gt; and circle the Recent section.&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2026 12:32:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Service/Power-BI-Service-Home-Recent-items-sometimes-not-showing/m-p/5367286#M302443</guid>
      <dc:creator>manoj_0911</dc:creator>
      <dc:date>2026-09-16T12:32:43Z</dc:date>
    </item>
    <item>
      <title>Best Practice for CICD Deployment Connections in Fabric UDFs?</title>
      <link>https://community.fabric.microsoft.com/t5/Fabric-platform/Best-Practice-for-CICD-Deployment-Connections-in-Fabric-UDFs/m-p/5367284#M30604</link>
      <description>&lt;P&gt;I recently faced a challenge with Fabric User Data Functions where environment-specific SQL connections need to be handled across Test and Production deployments (deployment pipelines do not update the connectionId )&lt;/P&gt;&lt;P&gt;My current approach is to register both connections in the UDF and use a Fabric variable to determine which one to use at runtime:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;@udf.connection(argName="testsqlDB", alias="testsqldb") @udf.connection(argName="prodsqlDB", alias="prodsqldb") @udf.connection(argName="envConfig", alias="environmentConf") @udf.function() def FO_Subscribe_Unsubscribe(testsqlDB: fn.FabricSqlConnection, prodsqlDB: fn.FabricSqlConnection, envConfig: fn.FabricVariablesClient, IsUserSubscribed: int, UserEmail: str, FundingOpportunityID: str, FundingOpportunity: str) -&amp;gt; str:     # Step 1: call stored procedure that inserts or delete rows from the subscription table     try:         connection = get_sql_connection(envConfig,testsqlDB,prodsqlDB)         cursor = connection.cursor()&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This seems to work well for now, although ideally Fabric would support deployment-time connection binding so that only a single logical connection alias is needed in the code.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm curious how others are handling CI/CD for UDF connections:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Are you using a similar pattern?&lt;/LI&gt;&lt;LI&gt;Is the deployment-time connection binding for UDF planned for the future?&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Wed, 16 Sep 2026 12:21:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Fabric-platform/Best-Practice-for-CICD-Deployment-Connections-in-Fabric-UDFs/m-p/5367284#M30604</guid>
      <dc:creator>david_avgarcia</dc:creator>
      <dc:date>2026-09-16T12:21:11Z</dc:date>
    </item>
  </channel>
</rss>

