Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
zidek22
Frequent Visitor

How do I use my filtered Month in a DAX correctly?

I have a table with Name column, Month column, Year column and Income columns. I will put an image here, but here is column description in text:

 

The Year and Month columns are just integers. Like: 1 is January in the Month column and 6 is for example June in the Month column.

Income columns are named as days so: 1, 2, 3, 4... and each are a floating point data type with values like 13 470,50 etc.

 

I have the Year and Month set as my page filter. For example Month = 4 and Year = 2023.

 

I am trying to write a DAX that takes the Month of the filter (So 4 in our example) PLUS ALL THE MONTHS PRIOR (So Month 1 + Month 2 + Month 3 + Month 4) and add up all the incomes in the Income columns.

 

In other words add up values in the 31 income columns and add that number cumulatively for each month until the month that is in the filter.

 

What I tried: 

KUM. 2023 = VAR currentSelectedYear = SELECTEDVALUE( vwPBI_Forecast[Year]) RETURN - CALCULATE(SUM(vwPBI_Forecast[1.])+SUM(vwPBI_Forecast[2.])+SUM(vwPBI_Forecast[3.])+SUM(vwPBI_Forecast[4.])+SUM(vwPBI_Forecast[5.])+SUM(vwPBI_Forecast[6.])+SUM(vwPBI_Forecast[7.])+SUM(vwPBI_Forecast[8.])+SUM(vwPBI_Forecast[9.])+SUM(vwPBI_Forecast[10.])+SUM(vwPBI_Forecast[11.])+SUM(vwPBI_Forecast[12.])+SUM(vwPBI_Forecast[13.])+SUM(vwPBI_Forecast[14.])+SUM(vwPBI_Forecast[15.])+SUM(vwPBI_Forecast[16.])+SUM(vwPBI_Forecast[17.])+SUM(vwPBI_Forecast[18.])+SUM(vwPBI_Forecast[19.])+SUM(vwPBI_Forecast[20.])+SUM(vwPBI_Forecast[21.])+SUM(vwPBI_Forecast[22.])+SUM(vwPBI_Forecast[23.])+SUM(vwPBI_Forecast[24.])+SUM(vwPBI_Forecast[25.])+SUM(vwPBI_Forecast[26.])+SUM(vwPBI_Forecast[27.])+SUM(vwPBI_Forecast[28.])+SUM(vwPBI_Forecast[29.])+SUM(vwPBI_Forecast[30.])+SUM(vwPBI_Forecast[31.]), ALL(vwPBI_Forecast[Month]), ALL(vwPBI_Forecast[Year]), FILTER ( ALL (vwPBI_Forecast),INT ( vwPBI_Forecast[Year] ) = currentSelectedYear )) *-1
 
This gives me this result:
 KUM income.png
 
The rows are the values from Name column. Why are all the rows the same? I need every row to contain the sum for the corresponding Name, not the total in every row.
 
This is the data set to better illustrate the description above:
query.png
 
I know it's probably something minor, but I am at my wit's end. If anyone has a suggestion for me, I will be most grateful.
 
THANK YOU!
1 REPLY 1
ValtteriN
Super User
Super User

Hi,

For running total I recommend reading this article: Computing running totals in DAX - SQLBI

In your case here is an example:

RT example =
VAR MaxDate = MAX ( 'Calendar'[Date] ) -- Saves the last visible date
RETURN
    CALCULATE (
        SUM('Table (30)'[Column2]),            -- Computes sales amount
        'Calendar'[Date] <= MaxDate,   -- Where date is before the last visible date
        ALL ( 'Calendar' )               -- Removes any other filters from calendar
    )


End result:
ValtteriN_0-1680270684084.png

 

data:

ValtteriN_1-1680270716288.png

I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!

My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors