Hello! I am looking to create a measure that calculates the difference between the count of deals closed this month and count of deals closed last month.
To get the count of deals, I am getting the distinct count of IDs.
I have a completed date field which is the date data type.
Thank you very much!
Hi,
Create a Calendar Table with calculated columns formulas for extracting Year, Month name and Month number. Sort the Month name column by the Month number column. Create a relationship from the Date column of the Data Table to the Date column of the Calendar Table. To your Table/matrix visual, drag Year and Month name from the Calendar Table. Write these measures
Deals closed = distinctcount(Data[ID])
Deals closed in previous month = calculate([Deals closed],previousmonth(Calendar[Date]))
Diff = [Deals closed]-[Deals closed in previous month]
Hope this helps.
@kristenmcnelly Maybe:
Measure =
VAR __Today = TODAY()
VAR __TMStart = DATE(YEAR(__Today),MONTH(__Today),1)
VAR __LMEnd = EOMONTH(__Today,-1)
VAR __LMStart = DATE(YEAR(__LMEnd),MONTH(__LMEnd),1)
VAR __TM = COUNTROWS(DISTINCT(SELECTCOLUMNS(FILTER('Table',[Date] <= __Today && [Date] >= __TMStart),"ID",[ID])))
VAR __LM = COUNTROWS(DISTINCT(SELECTCOLUMNS(FILTER('Table',[Date] <= __LMEnd && [Date] >= __LMStart ),"ID",[ID])))
RETURN
__TM - __LM
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
This session will provide guidance and teach campers the skills required to build Power BI reports that support multiple languages.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
217 | |
56 | |
47 | |
44 | |
43 |
User | Count |
---|---|
296 | |
207 | |
75 | |
75 | |
68 |