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 want to get some data within the same table where the date is the last date within the previous reporting period. All this is doing is allowing me to track progress of columns since the previous reporting period (normally around a month). I've included a workbook with the current table in one tab and the desired in the other. To get the desired I just found the 'Review Count' from 32 rows above and took it away from the current row Review Count, but this won't work once filtered.
[Previous Date] = // calculated column in table T
var CurrentDate = T[Date]
var PreviousDate =
MAXX(
TOPN(1,
FILTER(
DISTINCT( T[Date] ),
T[Date] < CurrentDate
),
T[Date],
DESC
),
T[Date]
)
return
PreviousDate
Might be what you want... but I have not opened the file since my company policy forbids it.
After reading my original question I've realised the description was a little vague and confusing so I've tried to make it a bit easier to follow. Below is a workbook showing what I am actually after. I am trying to retrieve the last date in a column that is less than the date of the current row being evaluated. I am not sure how to evaluate the current row and an entire column at the same time.
Please note that if you don't get answers for a long time, it means people don't understand your description. If you want to know what to do to get your questions answered quickly... How to Get Your Question Answered Quickly - Microsoft Power BI Community
User | Count |
---|---|
11 | |
9 | |
6 | |
6 | |
5 |
User | Count |
---|---|
24 | |
14 | |
14 | |
9 | |
7 |