Hello,
I'm trying to get only the hour if the date is today
If not show date and time
But i don't get anywhere??
Last(
FirstN(
Split(
ThisItem.Result,
";"
),
1
)
).Result
& " by " & Last(
FirstN(
Split(
ThisItem.Result,
";"
),
2
).Result
).Result
The data looks like:
12-07-2022 19:27:22;John Doe;test@test.com;
16-06-2022 05:17:52;John Doe;test@test.com;
So i like to get the result like:
19:27:22
Thank you