Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Currently i am looking for an solution called cumulative total in months, Lets Say If there's June Month in the row context then it should show up the sales value for July abd August, Similary If there's July then it should show up sales for August abd September. So basically its the cumulative of two months together.
Solved! Go to Solution.
Its Not Working for me but i came up with below calculation and its working correct for me,
Its Not Working for me but i came up with below calculation and its working correct for me,
Hello Its not working as it retrieves the same rows within the calculation.
Hi,
Hopefully, the below dax will works
IF(
ISBLANK([Total Sales]),BLANK(),
CALCULATE(
[Total Sales],
DATESINPERIOD(
'Date'[Date],
MAX('Date'[Date]),
2,MONTH
)
)
)
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.