<?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: need help this  calculated table by using dax in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4725580#M181007</link>
    <description>&lt;P&gt;The balance containers need to be carried forward to the next day, even though the input data does not have continuous dates&lt;/P&gt;</description>
    <pubDate>Mon, 09 Jun 2025 11:02:02 GMT</pubDate>
    <dc:creator>tkavitha911</dc:creator>
    <dc:date>2025-06-09T11:02:02Z</dc:date>
    <item>
      <title>need help this  calculated table by using dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4725161#M180992</link>
      <description>&lt;P&gt;Could you please help me create a calculated table in Power BI using DAX?&lt;BR /&gt;I have two tables: Calendar and Inbound_Query. The Inbound_Query table includes the following columns: Market, Supply Category, Container Number, Max ETA Date, Clearance Days, and Capacity.&lt;/P&gt;&lt;P&gt;I want to calculate a Predicted Delivery Date based on the following logic:&lt;/P&gt;&lt;P&gt;For each day and supply category, count the number of containers.&lt;BR /&gt;If the container count exceeds the capacity, the predicted delivery date should be: Max ETA Date + Clearance Days + 1 day.&lt;BR /&gt;Otherwise, it should be: Max ETA Date + Clearance Days.&lt;/P&gt;&lt;P&gt;I need a Remaining Containers column that tracks the number of containers exceeding the capacity for each day and market. These excess containers should be carried over to the next day. If the container count is within capacity, the remaining containers should be 0.&lt;/P&gt;&lt;P&gt;The final calculated table should include the following columns:&lt;/P&gt;&lt;P&gt;Market&lt;BR /&gt;Supply Category&lt;BR /&gt;Max ETA&lt;BR /&gt;Container Count&lt;BR /&gt;Remaining Containers&lt;BR /&gt;Capacity&lt;BR /&gt;Clearance Days&lt;BR /&gt;Predicted Delivery Date&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jun 2025 07:03:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4725161#M180992</guid>
      <dc:creator>tkavitha911</dc:creator>
      <dc:date>2025-06-09T07:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: need help this  calculated table by using dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4725211#M180996</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="672212" data-lia-user-login="tkavitha911" class="lia-mention lia-mention-user"&gt;tkavitha911&lt;/a&gt;&amp;nbsp;, Try using&lt;/P&gt;
&lt;P&gt;CalculatedTable = &lt;BR /&gt;VAR CalendarTable = ADDCOLUMNS(&lt;BR /&gt;CROSSJOIN(&lt;BR /&gt;VALUES(Calendar[Date]),&lt;BR /&gt;VALUES(Inbound_Query[Supply Category])&lt;BR /&gt;),&lt;BR /&gt;"Market", Inbound_Query[Market],&lt;BR /&gt;"Max ETA", Inbound_Query[Max ETA Date],&lt;BR /&gt;"Clearance Days", Inbound_Query[Clearance Days],&lt;BR /&gt;"Capacity", Inbound_Query[Capacity]&lt;BR /&gt;)&lt;BR /&gt;VAR ContainerCountTable = ADDCOLUMNS(&lt;BR /&gt;CalendarTable,&lt;BR /&gt;"Container Count", &lt;BR /&gt;CALCULATE(&lt;BR /&gt;COUNTROWS(Inbound_Query),&lt;BR /&gt;FILTER(&lt;BR /&gt;Inbound_Query,&lt;BR /&gt;Inbound_Query[Supply Category] = EARLIER(CalendarTable[Supply Category]) &amp;amp;&amp;amp;&lt;BR /&gt;Inbound_Query[Market] = EARLIER(CalendarTable[Market]) &amp;amp;&amp;amp;&lt;BR /&gt;Inbound_Query[Max ETA Date] = EARLIER(CalendarTable[Date])&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR PredictedDeliveryTable = ADDCOLUMNS(&lt;BR /&gt;ContainerCountTable,&lt;BR /&gt;"Remaining Containers", &lt;BR /&gt;VAR CurrentDate = CalendarTable[Date]&lt;BR /&gt;VAR CurrentMarket = CalendarTable[Market]&lt;BR /&gt;VAR CurrentSupplyCategory = CalendarTable[Supply Category]&lt;BR /&gt;VAR CurrentCapacity = CalendarTable[Capacity]&lt;BR /&gt;VAR CurrentContainerCount = ContainerCountTable[Container Count]&lt;BR /&gt;VAR PreviousRemainingContainers = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;SUMX(&lt;BR /&gt;ContainerCountTable,&lt;BR /&gt;ContainerCountTable[Remaining Containers]&lt;BR /&gt;),&lt;BR /&gt;FILTER(&lt;BR /&gt;ContainerCountTable,&lt;BR /&gt;ContainerCountTable[Date] = CurrentDate - 1 &amp;amp;&amp;amp;&lt;BR /&gt;ContainerCountTable[Market] = CurrentMarket &amp;amp;&amp;amp;&lt;BR /&gt;ContainerCountTable[Supply Category] = CurrentSupplyCategory&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR TotalContainers = CurrentContainerCount + PreviousRemainingContainers&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;TotalContainers &amp;gt; CurrentCapacity,&lt;BR /&gt;TotalContainers - CurrentCapacity,&lt;BR /&gt;0&lt;BR /&gt;),&lt;BR /&gt;"Predicted Delivery Date", &lt;BR /&gt;IF(&lt;BR /&gt;ContainerCountTable[Remaining Containers] &amp;gt; 0,&lt;BR /&gt;CalendarTable[Max ETA] + CalendarTable[Clearance Days] + 1,&lt;BR /&gt;CalendarTable[Max ETA] + CalendarTable[Clearance Days]&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;SELECTCOLUMNS(&lt;BR /&gt;PredictedDeliveryTable,&lt;BR /&gt;"Market", [Market],&lt;BR /&gt;"Supply Category", [Supply Category],&lt;BR /&gt;"Max ETA", [Max ETA],&lt;BR /&gt;"Container Count", [Container Count],&lt;BR /&gt;"Remaining Containers", [Remaining Containers],&lt;BR /&gt;"Capacity", [Capacity],&lt;BR /&gt;"Clearance Days", [Clearance Days],&lt;BR /&gt;"Predicted Delivery Date", [Predicted Delivery Date]&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jun 2025 07:36:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4725211#M180996</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-06-09T07:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: need help this  calculated table by using dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4725260#M180999</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.&lt;/P&gt;
&lt;P&gt;Please check the below picture and the attached pbix file.&lt;/P&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;expected result table = 
	VAR _condition = SELECTCOLUMNS(
		SUMMARIZE(
			ADDCOLUMNS(
				ADDCOLUMNS(
					SUMMARIZE(
						inbound_query,
						inbound_query[market],
						inbound_query[supply_category],
						inbound_query[max_eta],
						inbound_query[capacity]
					),
					"@container_count", CALCULATE(COUNTROWS(DISTINCT(inbound_query[container_number])))
				),
				"@condition", IF(
					inbound_query[capacity] &amp;lt; [@container_count],
					1,
					0
				),
				"@remaining_containers_count", IF(
					[@container_count] - inbound_query[capacity] &amp;gt; 0,
					[@container_count] - inbound_query[capacity],
					0
				)
			),
			inbound_query[market],
			inbound_query[supply_category],
			inbound_query[max_eta],
			[@container_count],
			[@remaining_containers_count],
			[@condition]
		),
		"@m", inbound_query[market],
		"@s", inbound_query[supply_category],
		"@container_count", [@container_count],
		"@remaining_containers_count", [@remaining_containers_count],
		"@maxeta", inbound_query[max_eta],
		"@condition", [@condition]
	)
	VAR _t = GENERATE(
		inbound_query,
		FILTER(
			_condition,
			[@m] = inbound_query[market] &amp;amp;&amp;amp; [@s] = inbound_query[supply_category] &amp;amp;&amp;amp; [@maxeta] = inbound_query[max_eta]
		)
	)
	RETURN
		SUMMARIZE(
			ADDCOLUMNS(
				SUMMARIZE(
					_t,
					inbound_query[market],
					inbound_query[supply_category],
					inbound_query[max_eta],
					[@container_count],
					[@remaining_containers_count],
					inbound_query[capacity],
					inbound_query[clearance_days],
					[@condition]
				),
				"@predicted_delivery_date", inbound_query[max_eta] + inbound_query[clearance_days] + [@condition]
			),
			inbound_query[market],
			inbound_query[supply_category],
			inbound_query[max_eta],
			[@container_count],
			[@remaining_containers_count],
			inbound_query[capacity],
			inbound_query[clearance_days],
			[@predicted_delivery_date]
		)&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 09 Jun 2025 08:15:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4725260#M180999</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2025-06-09T08:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: need help this  calculated table by using dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4725580#M181007</link>
      <description>&lt;P&gt;The balance containers need to be carried forward to the next day, even though the input data does not have continuous dates&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jun 2025 11:02:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4725580#M181007</guid>
      <dc:creator>tkavitha911</dc:creator>
      <dc:date>2025-06-09T11:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: need help this  calculated table by using dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4727279#M181082</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="672212" data-lia-user-login="tkavitha911" class="lia-mention lia-mention-user"&gt;tkavitha911&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As per my analysis, the solution provided by &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp; matches the requirement.&lt;/P&gt;
&lt;P&gt;However, to assist you further and provide an accurate and working solution, could you please help clarify a few things:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Date Context: Is the expected output a daily view across a calendar, or are we only interested in dates that appear in the Max ETA date column from the Inbound Query table?&lt;/LI&gt;
&lt;LI&gt;When you say you want "&lt;SPAN&gt;carried forward to the next day," in which column do you want the day to be carried forward?&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;Please provide a sample data/ pbix to get more clarity about your situation.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Your explanation will give us more clarity and hence we would be able to assist you better on this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Vinay Pabbu&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2025 13:03:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4727279#M181082</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-06-10T13:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: need help this  calculated table by using dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4731508#M181238</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="672212" data-lia-user-login="tkavitha911" class="lia-mention lia-mention-user"&gt;tkavitha911&lt;/a&gt;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I am following up to see if you had a chance to review my previous response and provide the requested information. This will enable us to assist you further.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Vinay Pabbu&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2025 11:57:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4731508#M181238</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-06-13T11:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: need help this  calculated table by using dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4733494#M181316</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="672212" data-lia-user-login="tkavitha911" class="lia-mention lia-mention-user"&gt;tkavitha911&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I ask if you have gotten this issue resolved?&lt;/P&gt;
&lt;P&gt;If it is solved, please mark the helpful reply or share your solution and accept it as solution, it will be helpful for other members of the community who have similar problems as yours to solve it faster.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Vinay Pabbu&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jun 2025 12:06:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4733494#M181316</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-06-16T12:06:39Z</dc:date>
    </item>
    <item>
      <title>Re: need help this  calculated table by using dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4735463#M181386</link>
      <description>&lt;P&gt;Need to fixpending containers and&amp;nbsp;Total containers pls help&amp;nbsp;&lt;BR /&gt;im providing the sample data and out put both&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Market&lt;/TD&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;Max eta date&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;No of containers arrived&lt;/TD&gt;&lt;TD&gt;Capacity&lt;/TD&gt;&lt;TD&gt;Clearence days&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;No of containers deliverd&lt;/TD&gt;&lt;TD&gt;No of containers pending to deliver&lt;/TD&gt;&lt;TD&gt;Total containers&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;India&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;11-11-2024&lt;/TD&gt;&lt;TD&gt;11-11-2024&lt;/TD&gt;&lt;TD&gt;23&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;18&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;India&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;12-11-2024&lt;/TD&gt;&lt;TD&gt;12-11-2024&lt;/TD&gt;&lt;TD&gt;24&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;37&lt;/TD&gt;&lt;TD&gt;42&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;India&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;13-11-2024&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;32&lt;/TD&gt;&lt;TD&gt;37&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;India&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;14-11-2024&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;27&lt;/TD&gt;&lt;TD&gt;32&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;India&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;15-11-2024&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;22&lt;/TD&gt;&lt;TD&gt;27&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;India&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;16-11-2024&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;17&lt;/TD&gt;&lt;TD&gt;22&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;India&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;17-11-2024&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;17&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;India&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;18-11-2024&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;India&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;19-11-2024&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;India&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;20-11-2024&lt;/TD&gt;&lt;TD&gt;20-11-2024&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;India&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;21-11-2024&lt;/TD&gt;&lt;TD&gt;21-11-2024&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;-5&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;India&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;22-11-2024&lt;/TD&gt;&lt;TD&gt;22-11-2024&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;-5&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;India&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;23-11-2024&lt;/TD&gt;&lt;TD&gt;23-11-2024&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;-10&lt;/TD&gt;&lt;TD&gt;-5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;India&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;24-11-2024&lt;/TD&gt;&lt;TD&gt;24-11-2024&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;-15&lt;/TD&gt;&lt;TD&gt;-10&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jun 2025 06:11:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4735463#M181386</guid>
      <dc:creator>tkavitha911</dc:creator>
      <dc:date>2025-06-18T06:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: need help this  calculated table by using dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4737093#M181435</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="672212" data-lia-user-login="tkavitha911" class="lia-mention lia-mention-user"&gt;tkavitha911&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Blank values in your input columns do affect measures, especially when doing cumulative or row-by-row logic.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Attached pbix file for your reference&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Vinay Pabbu&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jun 2025 07:56:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4737093#M181435</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-06-19T07:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: need help this  calculated table by using dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4740680#M181567</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="672212" data-lia-user-login="tkavitha911" class="lia-mention lia-mention-user"&gt;tkavitha911&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for the issue worked? or Let us know if you need any further assistance?&lt;BR /&gt;If our response addressed, please mark it as Accept as solution and click Yes if you found it helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Vinay Pabbu&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2025 11:59:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4740680#M181567</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-06-23T11:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: need help this  calculated table by using dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4745173#M181695</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="672212" data-lia-user-login="tkavitha911" class="lia-mention lia-mention-user"&gt;tkavitha911&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I just wanted to follow up on your thread. If the issue is resolved, it would be great if you could mark the solution so other community members facing similar issues can benefit too.&lt;BR /&gt;If not, don’t hesitate to reach out, we’re happy to keep working with you on this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Vinay Pabbu&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2025 13:19:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-help-this-calculated-table-by-using-dax/m-p/4745173#M181695</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-06-26T13:19:54Z</dc:date>
    </item>
  </channel>
</rss>

