Forum Discussion
Anonymous
3 years agoNot applicable
DAX
I need a measure to return me the last date of a sale to a client on the last month of a reference date. So, if i've selected mar/23, i need a measure to return the last date of a sale in feb/23. ...
- 3 years ago
Hi,
I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.
I tried to create a sample pbix file like below, and I hope the below can provide some ideas on how to create a solution for your datamodel.
expected result measure: = VAR _selectedmonthend = MAX ( 'Calendar'[Month-Year sort] ) RETURN MAXX ( CALCULATETABLE ( Sales, FILTER ( ALL ( 'Calendar' ), 'Calendar'[Month-Year sort] < _selectedmonthend ) ), Sales[Date] )
Jihwan_Kim
3 years agoSuper User
Hi,
I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.
I tried to create a sample pbix file like below, and I hope the below can provide some ideas on how to create a solution for your datamodel.
expected result measure: =
VAR _selectedmonthend =
MAX ( 'Calendar'[Month-Year sort] )
RETURN
MAXX (
CALCULATETABLE (
Sales,
FILTER ( ALL ( 'Calendar' ), 'Calendar'[Month-Year sort] < _selectedmonthend )
),
Sales[Date]
)