The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi Gurus,
Need a help on below,
I ned to caluculate Cumulative Total on a Calculated Measure per each Category and Country wher the data is not null With in a specific Data range
In the below example
my Current DAX is here
Solved! Go to Solution.
Please try this measure:
Measure 2 = CALCULATE(SUMX(FILTER('Table',COUNTROWS(FILTER('Table','Table'[Category]=EARLIER('Table'[Category])&&'Table'[Country]=EARLIER('Table'[Country])&&'Table'[Date]>=EARLIER('Table'[Date])))),[Measure]))
If the problem persists,could you share the sample pbix with dummy data?
Please try this measure:
Measure 2 = CALCULATE(SUMX(FILTER('Table',COUNTROWS(FILTER('Table','Table'[Category]=EARLIER('Table'[Category])&&'Table'[Country]=EARLIER('Table'[Country])&&'Table'[Date]>=EARLIER('Table'[Date])))),[Measure]))
If the problem persists,could you share the sample pbix with dummy data?
Thanks for the reply, this is working now
Hi @Anonymous
Is the screenshot showing the result of current measure? Can you provide some sample data in a format we can copy?