Limit the amount of results from my expression?

Tiger1
Participant V

How can i limit the amount of results (5) from my expression?

ORDERBY(Select(Work Order Table[tag_number], [ComputedAssetID] = [_THISROW].[NewComputedkey]), [Creation_Date],true)

Solved Solved
0 4 205
1 ACCEPTED SOLUTION

Bahbus
Participant V

TOP(
ORDERBY(Select(Work Order Table[tag_number], [ComputedAssetID] = [_THISROW].[NewComputedkey]), [Creation_Date],true)
, 5)

View solution in original post

4 REPLIES 4

Bahbus
Participant V

TOP(
ORDERBY(Select(Work Order Table[tag_number], [ComputedAssetID] = [_THISROW].[NewComputedkey]), [Creation_Date],true)
, 5)

Works perfectly!

Thanks!

Steve
Participant V

For reference:

Thx Steve

Top Labels in this Space