<?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: Level Up Your Databricks Game - Episode 1: Widgets in Community Articles</title>
    <link>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130415#M643</link>
    <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/5"&gt;@Sujitha&lt;/a&gt;! Hopefully plenty more to come 🥳&lt;/P&gt;</description>
    <pubDate>Mon, 01 Sep 2025 19:05:59 GMT</pubDate>
    <dc:creator>TheOC</dc:creator>
    <dc:date>2025-09-01T19:05:59Z</dc:date>
    <item>
      <title>Level Up Your Databricks Game - Episode 1: Widgets</title>
      <link>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130284#M628</link>
      <description>&lt;P&gt;Hi all,&lt;BR /&gt;TheOC here with my first of (hopefully!) many blogs on the Databricks Community. I'm hoping in this series to share quick, practical tips to help you get the most out of Databricks. Today's topic is: &lt;U&gt;Widgets&lt;/U&gt;.&lt;/P&gt;&lt;P&gt;If you're anything like me, you've also fallen into the trap of building notebooks with hard-coded values (dates, environments, column names?). This works fine at first, but as soon as something changes, or we want to share our notebooks, it can become a pain. This is where we should look to use widgets!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TheOC_0-1756659655433.gif" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/19513i4C522E225E5C0E0F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="TheOC_0-1756659655433.gif" alt="TheOC_0-1756659655433.gif" /&gt;&lt;/span&gt;&lt;BR /&gt;Widgets are interactive inputs that can be added to your notebook. This completely negates the need to dig through your code to look for the particular hard-coded value, as now you can simply use the interface you have made to change this. It may feel a small thing, but it can easily make your life so much easier when looking to productionise notebooks.&lt;/P&gt;&lt;P&gt;Here are our options:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Text Box (Free-text input, useful for things like dates or titles)&lt;BR /&gt;&amp;gt;&amp;nbsp;&lt;A href="https://docs.databricks.com/aws/en/dev-tools/databricks-utils#dbutils-widgets-text" target="_self"&gt;dbutils.widgets.text()&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Dropdown (Single-selection list input, useful for environments)&lt;BR /&gt;&amp;gt;&amp;nbsp;&lt;A href="https://docs.databricks.com/aws/en/dev-tools/databricks-utils#dbutils-widgets-dropdown" target="_self"&gt;dbutils.widgets.dropdown()&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Combobox (Dropdown, plus the option to type in your own value)&lt;BR /&gt;&amp;gt;&amp;nbsp;&lt;A href="https://docs.databricks.com/aws/en/dev-tools/databricks-utils#dbutils-widgets-combobox" target="_self"&gt;dbutils.widgets.combobox()&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Multiselect (Dropdown, but allows for multiple options to be selected)&lt;BR /&gt;&amp;gt;&amp;nbsp;&lt;A href="https://docs.databricks.com/aws/en/dev-tools/databricks-utils#dbutils-widgets-multiselect" target="_self"&gt;dbutils.widgets.multiselect()&lt;/A&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TheOC_1-1756659909004.gif" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/19514i4062C4E09AD52BFA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="TheOC_1-1756659909004.gif" alt="TheOC_1-1756659909004.gif" /&gt;&lt;/span&gt;&lt;BR /&gt;Let's look at creating some Widgets, to show you what that looks like!&lt;/P&gt;&lt;P&gt;I'm going to create 4 widgets with the following code:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;# 1. Text box 
dbutils.widgets.text("date", "2025-01-01", "Select Date")

# 2. Dropdown 
dbutils.widgets.dropdown("environment", "dev", ["dev", "test", "prod"], "Environment")

# 3. Combobox
dbutils.widgets.combobox("region", "NA", ["NA", "EMEA", "APAC", "LATAM"], "Region")

# 4. Multiselect
dbutils.widgets.multiselect("columns", "sales", ["sales", "profit", "cost"], "Columns")&lt;/LI-CODE&gt;&lt;P&gt;Let's see what that does:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ezgif-589e531c99345c.gif" style="width: 800px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/19516i596BFE8744ED6769/image-size/large?v=v2&amp;amp;px=999" role="button" title="ezgif-589e531c99345c.gif" alt="ezgif-589e531c99345c.gif" /&gt;&lt;/span&gt;&lt;BR /&gt;As you can see, inserting this code and hitting run presents the user with 4 inputs: 'Select Date', 'Environment', 'Region', and 'Columns'.&amp;nbsp;&lt;BR /&gt;Getting these into the notebook is great, but now we need to actually use these values entered. This can be done through:&lt;BR /&gt;&amp;gt;&amp;nbsp;&lt;A href="https://docs.databricks.com/aws/en/dev-tools/databricks-utils#get-command-dbutilswidgetsget" target="_self"&gt;dbutils.widgets.get&lt;/A&gt;&lt;BR /&gt;(It's worth knowing that for multiselects, the value is returned as a comma separated list.)&lt;/P&gt;&lt;P&gt;Let's have a look at an example:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ezgif-5d5cf85fdf3734.gif" style="width: 800px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/19517iBE921AB3756C592F/image-size/large?v=v2&amp;amp;px=999" role="button" title="ezgif-5d5cf85fdf3734.gif" alt="ezgif-5d5cf85fdf3734.gif" /&gt;&lt;/span&gt;&lt;BR /&gt;How cool is that?&amp;nbsp; In just a few lines we've been able to create a user interface for our notebook, and utilise the values entered. I can't wait to use these on my production workflows to make them easier to reuse and share, and much more future-proofed.&lt;BR /&gt;These can easily be used to:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Switch between Dev, Test, and Prod data sources&lt;/LI&gt;&lt;LI&gt;Select Reporting Periods (P01, P02)&lt;/LI&gt;&lt;LI&gt;Adjust SQL query filters or limits easily&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TheOC_5-1756662846682.gif" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/19518iC0BEEAD6482BCAF5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="TheOC_5-1756662846682.gif" alt="TheOC_5-1756662846682.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;That's it for the first instalment of &lt;EM&gt;Level Up Your Databricks Game&lt;/EM&gt;. Widgets may seem a simple feature, but once you start using them you'll really unlock value in your projects.&lt;BR /&gt;I'd love to hear how you're already using widgets - or where you think you could use them.&amp;nbsp;&lt;BR /&gt;Also, do let me know if there's anything specific you'd like me to cover in this series! I have my own ideas but I'd love to hear yours&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 31 Aug 2025 18:08:42 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130284#M628</guid>
      <dc:creator>TheOC</dc:creator>
      <dc:date>2025-08-31T18:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: Level Up Your Databricks Game - Episode 1: Widgets</title>
      <link>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130323#M629</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/171339"&gt;@TheOC&lt;/a&gt;&amp;nbsp;this is cool! This really unlocks others to be able to interact with your notebook without actually breaking them &lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt;.&lt;BR /&gt;&lt;BR /&gt;I think the idea around parameterisation is great. You could move from notebooks to SQL Queries and how they support parameters. We've also got parameters in AI/BI dashboards.&amp;nbsp;We can then move into Data Engineering as there's so much around parameterisation with Lakeflow Declarative Pipelines as well:&amp;nbsp;&lt;A href="https://docs.databricks.com/aws/en/dlt/parameters" target="_blank"&gt;https://docs.databricks.com/aws/en/dlt/parameters&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BS_THE_ANALYST_0-1756715345060.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/19527i2D96678C62E40127/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BS_THE_ANALYST_0-1756715345060.png" alt="BS_THE_ANALYST_0-1756715345060.png" /&gt;&lt;/span&gt;&lt;BR /&gt;There could be a series all around this&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/171339"&gt;@TheOC&lt;/a&gt;. Happy to help in whatever way I can, should you require another set of hands &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;.&lt;BR /&gt;&lt;BR /&gt;All the best,&lt;BR /&gt;BS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 08:33:39 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130323#M629</guid>
      <dc:creator>BS_THE_ANALYST</dc:creator>
      <dc:date>2025-09-01T08:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: Level Up Your Databricks Game - Episode 1: Widgets</title>
      <link>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130327#M630</link>
      <description>&lt;P&gt;Thank&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/171339"&gt;@TheOC&lt;/a&gt;&amp;nbsp;, really cool presentation of widget capabilities. And I really appreciate that you put effort to create this. I’m really fed up with LLM-generated content, so it’s refreshing to see a post prepared by a human &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 08:37:17 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130327#M630</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2025-09-01T08:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: Level Up Your Databricks Game - Episode 1: Widgets</title>
      <link>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130330#M631</link>
      <description>&lt;P&gt;I haven't used widgets much before, but I also hadn't realised the power of them. I will certainly be taking advantage from now on. I am curious if there is a specific date widget that allows you to select a date from a calendar-like table? If not, this would be a cool feature to have.&lt;BR /&gt;&lt;BR /&gt;Thoroughly enjoyed the read, looking forward to the rest of the series, thanks&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/171339"&gt;@TheOC&lt;/a&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 08:41:35 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130330#M631</guid>
      <dc:creator>Pilsner</dc:creator>
      <dc:date>2025-09-01T08:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Level Up Your Databricks Game - Episode 1: Widgets</title>
      <link>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130356#M632</link>
      <description>&lt;P&gt;hey&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/146924"&gt;@BS_THE_ANALYST&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thanks for the support!&lt;BR /&gt;Great idea about expanding the particular use-case of &lt;SPAN&gt;parameterisation&lt;/SPAN&gt;. I have a few more ideas I'd like to explore with the&amp;nbsp;&lt;EM&gt;Level up your Databricks Game&lt;/EM&gt; series first, but absolutely will be adding that to my list to circle back to.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 11:35:19 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130356#M632</guid>
      <dc:creator>TheOC</dc:creator>
      <dc:date>2025-09-01T11:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: Level Up Your Databricks Game - Episode 1: Widgets</title>
      <link>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130357#M633</link>
      <description>&lt;P&gt;hey&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/110502"&gt;@szymon_dybczak&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thanks!&lt;BR /&gt;Yeah me too, it's somewhat disheartening to look across the Community and see a sea of AI - nice to know there's still a few real humans around! &lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 11:36:14 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130357#M633</guid>
      <dc:creator>TheOC</dc:creator>
      <dc:date>2025-09-01T11:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Level Up Your Databricks Game - Episode 1: Widgets</title>
      <link>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130358#M634</link>
      <description>&lt;P&gt;hey&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/170791"&gt;@Pilsner&lt;/a&gt;,&lt;BR /&gt;Thanks for the kind words!&lt;BR /&gt;I heard about a date-time picker widget from a blog written a few years ago, but it appears that this was an AI hallucination in the blog unfortunately.&lt;BR /&gt;&lt;BR /&gt;There is also an idea/discussion for it here:&lt;BR /&gt;&lt;A href="https://community.databricks.com/t5/data-engineering/datepicker-widget/td-p/23186" target="_blank"&gt;https://community.databricks.com/t5/data-engineering/datepicker-widget/td-p/23186&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;But doesn't seem like there's much movement there unfortunately.&lt;BR /&gt;&lt;BR /&gt;There would be ways of doing this in external packages but seems like the widgets are limited to these 4 options (although I'd love to be proven wrong!)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 11:39:33 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130358#M634</guid>
      <dc:creator>TheOC</dc:creator>
      <dc:date>2025-09-01T11:39:33Z</dc:date>
    </item>
    <item>
      <title>Re: Level Up Your Databricks Game - Episode 1: Widgets</title>
      <link>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130364#M635</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/171339"&gt;@TheOC&lt;/a&gt;&amp;nbsp;Congratulations on your very first blog with the Databricks Community!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":clapping_hands:"&gt;👏&lt;/span&gt; Looking forward to more such content from you!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":rocket:"&gt;🚀&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 12:15:57 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130364#M635</guid>
      <dc:creator>Sujitha</dc:creator>
      <dc:date>2025-09-01T12:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: Level Up Your Databricks Game - Episode 1: Widgets</title>
      <link>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130367#M636</link>
      <description>&lt;P&gt;Hey congratulations mate&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/171339"&gt;@TheOC&lt;/a&gt;&amp;nbsp;I just now learnt about widgets - it was great refreshing.&lt;/P&gt;&lt;P&gt;Keep sharing. Good day!&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 12:27:06 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130367#M636</guid>
      <dc:creator>Khaja_Zaffer</dc:creator>
      <dc:date>2025-09-01T12:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: Level Up Your Databricks Game - Episode 1: Widgets</title>
      <link>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130372#M637</link>
      <description>&lt;P&gt;Well written,&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/171339"&gt;@TheOC&lt;/a&gt;. The way you put this together really draws people in... might even inspire some to start blogging themselves.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 13:31:54 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130372#M637</guid>
      <dc:creator>Advika</dc:creator>
      <dc:date>2025-09-01T13:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Level Up Your Databricks Game - Episode 1: Widgets</title>
      <link>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130384#M639</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mceleavey_0-1756735745910.gif" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/19544i12CA5C27B1102A6B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mceleavey_0-1756735745910.gif" alt="mceleavey_0-1756735745910.gif" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 14:09:41 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130384#M639</guid>
      <dc:creator>mceleavey</dc:creator>
      <dc:date>2025-09-01T14:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: Level Up Your Databricks Game - Episode 1: Widgets</title>
      <link>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130386#M640</link>
      <description>&lt;P&gt;&lt;SPAN&gt;This was such a fun read, &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/171339"&gt;@TheOC&lt;/a&gt;! Can’t wait to see what you share next &lt;span class="lia-unicode-emoji" title=":clapping_hands:"&gt;👏&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":fire:"&gt;🔥&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 14:39:05 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130386#M640</guid>
      <dc:creator>Rishabh_Tiwari</dc:creator>
      <dc:date>2025-09-01T14:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: Level Up Your Databricks Game - Episode 1: Widgets</title>
      <link>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130392#M641</link>
      <description>&lt;P&gt;That's good to know &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/171339"&gt;@TheOC&lt;/a&gt;&amp;nbsp;, thank you. If I get time, I might have to play around with some external packages, just to see what's possible.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 15:17:18 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130392#M641</guid>
      <dc:creator>Pilsner</dc:creator>
      <dc:date>2025-09-01T15:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: Level Up Your Databricks Game - Episode 1: Widgets</title>
      <link>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130415#M643</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/5"&gt;@Sujitha&lt;/a&gt;! Hopefully plenty more to come 🥳&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 19:05:59 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130415#M643</guid>
      <dc:creator>TheOC</dc:creator>
      <dc:date>2025-09-01T19:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: Level Up Your Databricks Game - Episode 1: Widgets</title>
      <link>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130461#M645</link>
      <description>&lt;P&gt;hey&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/173840"&gt;@Khaja_Zaffer&lt;/a&gt;,&amp;nbsp;thanks for the kind words!&lt;BR /&gt;&lt;BR /&gt;Let me know how you end up using Widgets 🥳&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 08:11:11 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130461#M645</guid>
      <dc:creator>TheOC</dc:creator>
      <dc:date>2025-09-02T08:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: Level Up Your Databricks Game - Episode 1: Widgets</title>
      <link>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130462#M646</link>
      <description>&lt;P&gt;hey&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/152834"&gt;@Advika&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thank you!&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I hope it does inspire others - blogging can be very fun: Just don't let ChatGPT take away all of the creativity &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 08:11:51 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130462#M646</guid>
      <dc:creator>TheOC</dc:creator>
      <dc:date>2025-09-02T08:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: Level Up Your Databricks Game - Episode 1: Widgets</title>
      <link>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130464#M647</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="giphy" style="width: 480px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/19560iFCAAF31A7D67E2EA/image-size/large?v=v2&amp;amp;px=999" role="button" title="giphy" alt="giphy" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 08:14:21 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130464#M647</guid>
      <dc:creator>TheOC</dc:creator>
      <dc:date>2025-09-02T08:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: Level Up Your Databricks Game - Episode 1: Widgets</title>
      <link>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130465#M648</link>
      <description>&lt;P&gt;hey&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/152748"&gt;@Rishabh_Tiwari&lt;/a&gt;,&lt;BR /&gt;Thank you!&lt;BR /&gt;Watch this space for the next instalment &lt;span class="lia-unicode-emoji" title=":eyes:"&gt;👀&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 08:15:03 GMT</pubDate>
      <guid>https://community.databricks.com/t5/community-articles/level-up-your-databricks-game-episode-1-widgets/m-p/130465#M648</guid>
      <dc:creator>TheOC</dc:creator>
      <dc:date>2025-09-02T08:15:03Z</dc:date>
    </item>
  </channel>
</rss>

