How to create a Goal based on a Event (category and action and value)?

Hello,

it’s obvious how to create a goal based on event category or action or name.

But how can you create a goal based on multiple event conditions (category + name + action). It is possible in GA:

image

Anyone knows how to achieve the same in Matomo?

It is possible to use the JavaScript API to trigger a goal:
https://developer.matomo.org/api-reference/tracking-javascript#using-the-tracker-object

trackGoal( idGoal, [customRevenue]); - Log a conversion for the numeric goal ID, with an optional numeric custom revenue customRevenue.

Or also with MTM:

Hello Philippe, thank for your advice.

Using your method I was able to create a Goal using a Trigger with multiple Event criteria (name/action/etc.).

I’m still working on it as it looks like Goal is not achieved even when it should be.

Thanks for the help anyway.