I have a SharePoint list that I want to trigger the flow by using Trigger Conditions when the specific column value changes.

The flow triggered when the Current Status changed to Approved but the flow triggered again when I changed the value on the Amount column. which I don’t want to happen. I want the flow to trigger when the Current Status column value changes and ignore other columns' modifications. I tried the below trigger conditions but not working properly.

@equals(triggerBody()?['Current_Status']?['Value'],'APPROVED')
AND
@equals(triggerOutputs()?['body/Current_Status/Value'],'APPROVED')