Can you try using Python script in Origin worksheet Set Column Value dialog, see the example below to detect the rising point of the signal.
import numpy as np
def get_trigger(ll):
ll = np.array(ll)
result = np.where(np.diff(ll) > 3)
return result[0].astype(float)+2

James