The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
I was trying to use calculate Max[datesales column] and filtering by datesales column so I could use a timeline. But I cant work out how to make this work.
I need something that i can also use in power pivot.
Solved! Go to Solution.
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]
)
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]
)
User | Count |
---|---|
78 | |
74 | |
43 | |
32 | |
28 |
User | Count |
---|---|
104 | |
95 | |
51 | |
50 | |
46 |