Hi @rowlinx,
If the Title field here is a string type, then use the idea posted by @Anonymous should work.
The formula might need to change a little:
For example, under the Editform control, with the Title Field DataCard, unlock it, then add a Label control,
We could change its Text property with the formula below:
"Start after: " & First(Sort(Testing,Text2,Descending)).Text2
And if you would like it to display only when adding new record, change its Visible property with the formula below:
If(EditForm1.Mode=New,true,false)
See:

Data reference:

Some additional thoughts.
If your App would be used by multiple users, then there might be conflicts happened when multiples users submit new records.
A better workaround is to configure an automatic number row from the datasource side.
Regards,
Michael