If you want to use Trigger condition based on the choice column in SharePoint list, you can use both Value and id:
Here is the example:
@equals(triggerOutputs()?['body']['field_6']?['Value'],'Advance')
@equals(triggerOutputs()?['body'][''field_6']?['Id'],3)
Reference:
But if you want to use Trigger condition based on the multi choice column in SharePoint list:
it seems the best approach is to split the payload of the trigger and then use a choice ID in a simple trigger as you know:
@contains(triggerBody()?['field_6#Id'],3)
Hope these information helps.
Please do let us know if you have any further queries.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.