The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I want to rank within the InvoiceNumber group by CreatedDate, the latest date should be rank 1. There are two InvoiceNumber in the below data 408 and 449.
I have created a measure to do the ranking:
InvoiceRankInTimePeriod =
VAR CreatedDate = [CreatedDateMin]
VAR Invoices =
CALCULATETABLE ( 'Data InvoiceFact', ALLSELECTED ( 'Data InvoiceFact' ), Values('Data InvoiceFact'[InvoiceNumber]) )
VAR InvoiceRank =
RANKX ( Invoices, VALUE(FORMAT([CreatedDateMin], "YYYYMMDDHHmmss") + [InvoiceKeyMin]))
VAR Result =
IF ( NOT ISBLANK ( CreatedDate ), InvoiceRank )
RETURN
Result
The ranking works:
I am wondering why it works, in particular what is VALUES doing within the CALUCLATETABLE function.
Hi,
The VALUES function creates a virtual table with all unique values of Invoice Number.
It's very close to DISTINCT function, even though soem diffrences might appear in some calculations.
To have more details on both functions, please refer to :
and
Hope it makes more sense for you
User | Count |
---|---|
16 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
8 | |
8 |