<?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: Calculate age based on Date of Birth in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-age-based-on-Date-of-Birth/m-p/2851761#M91448</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;Thank you so much. It worked.&lt;/P&gt;</description>
    <pubDate>Wed, 19 Oct 2022 15:51:00 GMT</pubDate>
    <dc:creator>Samiks95</dc:creator>
    <dc:date>2022-10-19T15:51:00Z</dc:date>
    <item>
      <title>Calculate age based on Date of Birth</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-age-based-on-Date-of-Birth/m-p/2851681#M91436</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a column &lt;STRONG&gt;Date of Birth.&lt;/STRONG&gt; And now, I want to calculate &lt;STRONG&gt;Age &lt;/STRONG&gt;based on Date of Birth. I also want to do the &lt;STRONG&gt;age grouping.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Oct 2022 15:04:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-age-based-on-Date-of-Birth/m-p/2851681#M91436</guid>
      <dc:creator>Samiks95</dc:creator>
      <dc:date>2022-10-19T15:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate age based on Date of Birth</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-age-based-on-Date-of-Birth/m-p/2851686#M91438</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="457654" data-lia-user-login="Samiks95" class="lia-mention lia-mention-user"&gt;Samiks95&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can create this column:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Age = &lt;/SPAN&gt;&lt;SPAN&gt;DATEDIFF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Date of Birth]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;TODAY&lt;/SPAN&gt;&lt;SPAN&gt;(),&lt;/SPAN&gt;&lt;SPAN&gt;YEAR&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;And i dont understand about the age grouping what do you want to do.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 19 Oct 2022 15:12:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-age-based-on-Date-of-Birth/m-p/2851686#M91438</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-10-19T15:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate age based on Date of Birth</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-age-based-on-Date-of-Birth/m-p/2851723#M91443</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;Thank you Luis!&amp;nbsp;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I want to create a age range based on the age. Similar to the attached pic.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Oct 2022 15:30:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-age-based-on-Date-of-Birth/m-p/2851723#M91443</guid>
      <dc:creator>Samiks95</dc:creator>
      <dc:date>2022-10-19T15:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate age based on Date of Birth</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-age-based-on-Date-of-Birth/m-p/2851739#M91446</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Ok, try with this, change "&lt;EM&gt;Table (4)"&lt;/EM&gt;&amp;nbsp; with the name of the table where you have the column Age&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Range = &lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;AND&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table (4)'&lt;/SPAN&gt;&lt;SPAN&gt;[Age]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;=&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'Table (4)'&lt;/SPAN&gt;&lt;SPAN&gt;[Age]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;=&lt;/SPAN&gt;&lt;SPAN&gt;16&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;"Child"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;AND&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table (4)'&lt;/SPAN&gt;&lt;SPAN&gt;[Age]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;=&lt;/SPAN&gt;&lt;SPAN&gt;17&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'Table (4)'&lt;/SPAN&gt;&lt;SPAN&gt;[Age]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;=&lt;/SPAN&gt;&lt;SPAN&gt;30&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;"Young Adults"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;AND&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table (4)'&lt;/SPAN&gt;&lt;SPAN&gt;[Age]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;=&lt;/SPAN&gt;&lt;SPAN&gt;31&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'Table (4)'&lt;/SPAN&gt;&lt;SPAN&gt;[Age]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;=&lt;/SPAN&gt;&lt;SPAN&gt;45&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;"Middle-aged Adults"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"Old-aged Adults"&lt;/SPAN&gt;&lt;SPAN&gt;)))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 19 Oct 2022 15:39:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-age-based-on-Date-of-Birth/m-p/2851739#M91446</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-10-19T15:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate age based on Date of Birth</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-age-based-on-Date-of-Birth/m-p/2851761#M91448</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;Thank you so much. It worked.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Oct 2022 15:51:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-age-based-on-Date-of-Birth/m-p/2851761#M91448</guid>
      <dc:creator>Samiks95</dc:creator>
      <dc:date>2022-10-19T15:51:00Z</dc:date>
    </item>
  </channel>
</rss>

