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.
Hello.
I'm trying to create a calculated measure that would COUNT hasExtPower=TRUE for a certain PublicDeviceId. This measure must count only the last 10 entries (GpsTime DESC).
The output should look like this
SN Count of last 10 messages TRUE
29503 5
Solved! Go to Solution.
@Domen , Create a rank column
Rank GpsTime = rankx(Table, Table[GpsTime],,desc, dense)
countrows(filter(Table, Table[Rank GpsTime ]<= 10 && [hasExtPower]=TRUE() ) )
@Domen , Create a rank column
Rank GpsTime = rankx(Table, Table[GpsTime],,desc, dense)
countrows(filter(Table, Table[Rank GpsTime ]<= 10 && [hasExtPower]=TRUE() ) )
User | Count |
---|---|
25 | |
10 | |
8 | |
7 | |
6 |
User | Count |
---|---|
32 | |
12 | |
10 | |
10 | |
9 |