Assuming the RAW key name for “Km Price” is _kmPrice (because you took a screenshot and did not provide the output bundle as TEXT here),
You can use these built-in functions:
-
toArray
toArray(collection)
-
sort
sort(array; [order]; [key])
-
map
map(complex array; key; [filter by key]; [csv-values for filtering])
-
first
first(array)
These functions may have also been covered in the Make Academy tutorials — refer to the Make Academy Course Overview to learn more.
Here’s an example of how you can use these functions together:
{{first(map(sort(toArray(194.data); "desc"; "value._dataTimestamp"); "value._kmPrice"))}}
Make Input Markup:
Copy-paste the above into the field, including start/end curly brackets for it to import as intended
E.g.:
Module Subflow Export - paste modules into your scenario
Copy and paste this into the scenario editor to import the example modules shown in my screenshots above.
{"subflows":[{"flow":[{"id":194,"module":"json:ParseJSON","version":1,"parameters":{"type":""},"mapper":{"json":"{\r\n \"data\": {\r\n \"4\": {\r\n \"_ragicId\": 4,\r\n \"_star\": false,\r\n \"_dataTimestamp\": 1773991306956,\r\n \"_validFrom\": \"2026/01/01\",\r\n \"_index_calDates_\": \"d1001423 2025/01/01\",\r\n \"_kmPrice\": 1.17,\r\n \"comment\": \"\",\r\n \"_index_title\": \"\",\r\n \"_index_\": \"\",\r\n \"_seq\": 2\r\n },\r\n \"5\": {\r\n \"_ragicId\": 5,\r\n \"_star\": false,\r\n \"_dataTimestamp\": 1773590406956,\r\n \"_validFrom\": \"2026/03/16\",\r\n \"_index_calDates_\": \"d1001423 2026/03/16\",\r\n \"_kmPrice\": 1.23,\r\n \"comment\": \"\",\r\n \"_index_title\": \"\",\r\n \"_index_\": \"\",\r\n \"_seq\": 1\r\n }\r\n }\r\n}"},"metadata":{"designer":{"x":125,"y":-2539},"parameters":[{"name":"type","type":"udt","label":"Data structure"}]}},{"id":195,"module":"util:SetVariable2","version":1,"parameters":{},"mapper":{"name":"latestKmPrice","scope":"roundtrip","value":"{{first(map(sort(toArray(194.data); \"desc\"; \"value._dataTimestamp\"); \"value._kmPrice\"))}}"},"metadata":{"designer":{"x":425,"y":-2539}}}]}],"metadata":{"version":1}}
Need help❓View instructions ◀
1. Move your mouse over the line of code above.
Copy the JSON by clicking the copy button on the right-side:

2. Enter your scenario editor. Close any open panels by pressing ESC. Press CTRLV (paste keyboard shortcut for Windows) to paste directly in the editor.
3. Click on imported modules and re-save it to trigger validation. There may be some errors prompting you to re-map some variables and select connections.
Note: Did you know you can also reduce the size of blueprint exports and module subflows like the above, using my Make Blueprint Scrubber?
— @samliew