Forum Discussion
sum values with the last date (month)
- 9 years ago
HI,
Tks everybody for answers...
I solved:
LastMonth = IF(YEAR(TODAY())= YEAR('Fact'[Date]) && MONTH(TODAY())-1 = MONTH('Fact'[Date]);1;BLANK())
Mymeasure = CALCULATE(SUM('Fact'[Value]);'Fact'[LatMonth] =1)
LastMonth is my table name.
Tks.
I need show just 1, because last month its october, but its wrong
- Sean9 years ago
Community Champion
Create a Month Index COLUMN like this...
Month Index = INT ( CONCATENATE ( YEAR ( 'Calendar'[Date] ), FORMAT ( 'Calendar'[Date], "MM" ) ) )
Then create this MEASURE...
Last Month Total = CALCULATE ( SUM ( TableName[ColumnName] ), FILTER ( 'Calendar', 'Calendar'[Month Index] = MAX ( 'Calendar'[Month Index] ) - 1 ) )This MEASURE should show you only the Last Month's Total.
Hope this helps! :smileyhappy:
- Twister89 years ago
Helper II
Tks for answer..
But its hard for me, i have the error in:
Month Index = INT (CONCATENATE (YEAR('Time'[Date]); FORMAT ( 'Time'[Date]; "MM" ) ) )
Could not determine a single value for the 'Date' column in the 'Time' table. This can happen when a measure formula refers to a column containing many values, without specifying an aggregation, such as min, max, Cont or sound for a single result.
- Sean9 years ago
Community Champion
Month Index should be a COLUMN not Measure!