- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Show total only last month
Hi,
I need help
I need show in my gauge the value just of the LASTMONTH
When I use the expression:
= CALCULATE([VALUE];DATEADD(Tempo[Date]; -1; MONTH))
My result its total, its sum all values in rows, but I need just the last month
In this example:
month values
2016-1 1
2016-2 5
2016-10 10
2016-10 10
So I need return the 20 in my result
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
HI,
Tks everybody for answers...
I solved:
Column
LastMonth = IF(YEAR(TODAY())= YEAR('Fact'[Date]) && MONTH(TODAY())-1 = MONTH('Fact'[Date]);1;BLANK())
Measure
Mymeasure = CALCULATE(SUM('Fact'[Value]);'Fact'[LatMonth] =1)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I just create a calculated column on the date field in the table:
IsPreviousMonthIns = IF(Month([Inspection_Date])=Month(Today())-1,"YES","NO")
Then set a visual level filter on this column to filter out the "No" results.
I also create a column to check current year:
IsCurrentYearIns = IF(Year([Inspection_Date])=Year(Today()),"YES","NO")
These two columns allow me to pull only last months results for the current year......Works nicely....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @Twister8,
You can try to use below formula if it works on your side:
Total of last month =
var currDate=MAX(Tempo[Date])
return
SUMX(FILTER(ALL(Tempo),currDate>= DATE(YEAR(currDate),MONTH(currDate)-1,1)&&currDate<=DATE(YEAR(currDate),MONTH(currDate),1)-1),[VALUE])
Regards,
Xiaoxin Sheng
If this post helps, please consider accept as solution to help other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
HI,
Tks everybody for answers...
I solved:
Column
LastMonth = IF(YEAR(TODAY())= YEAR('Fact'[Date]) && MONTH(TODAY())-1 = MONTH('Fact'[Date]);1;BLANK())
Measure
Mymeasure = CALCULATE(SUM('Fact'[Value]);'Fact'[LatMonth] =1)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Your formula might have failed by now as the current year is not anymore the same as YEAR('Fact'[Date]) but still is last month.
I created a measure as the key for identifying
LastMonth = if(MONTH(TODAY())-1=0,12,MONTH(TODAY()-1)) &" "& (YEAR(TODAY())-1)
Also a column for identifying those.
IsInLastMonth = IF(DateTable[MonthAndYear]=[LastMonth],TRUE(),FALSE())
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can check it out at HERE.
Bhavesh
Love the Self Service BI.
Please use the 'Mark as answer' link to mark a post that answers your question. If you find a reply helpful, please remember to give Kudos.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Tks for answer 🙂
But i have a error:
A3 = IF(MONTH(LASTDATE(ALL('Fct'[DATA]))) = Time[Date]
&& YEAR(LASTDATE(ALL('Fct'[DATA]))) = Time[Date];"Y";"N")
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.

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
08-20-2024 01:59 AM | |||
07-23-2024 01:29 PM | |||
08-19-2024 08:47 AM | |||
Anonymous
| 06-21-2024 08:25 AM | ||
09-10-2024 03:20 AM |