Hi Antonio,
Sorry for my late reply.
Here is a solution to meet your needs.
You need to create a Date column, a Calculated column, and a Power Automate flow.
- The Power Automate flow adds today's date to the Date column only when the list item's Choice field is changed to "Open". Updating the list item's other fields won't update the Date field.
- The Date column is used to store the date when the item's Choice field is changed to "Open".
- The Calculated column is used to count the days between two dates(the recorded date and today) when the item's choice field is "Open".
Here is the test result.

Here are the steps.
- Create a Date column
- Create a Power Automate flow as shown in the screenshots below

For the "When an item is created or modified" trigger, add a trigger condition via the three dots> Settings. Remember to replace "choice" with your Choice column name in the following expression.
@equals(triggerOutputs()?['body/choice/Value'],'Open')


In the "Get changes for an item or a file" action, add "Trigger Window Start Token" and "Trigger Window End Token"

In the Condition, add two conditions with the OR function
The first condition, add "Has Column Changed: choice" from "Get changes for an item or a file", is equal to, input the expression "true".
The second condition, add two sub-conditions with the And function
choice Value, is equal to, Open
Date column, is equal to, null
In the Date column field, input the expression "formatDateTime(utcNow(),'yyyy-MM-dd')". If your date format is not like this, you need to change the 'yyyy-MM-dd' part.

- Create a Calculated column
Click "Add column", select "See all column types", click Next. Choose the column type "Calculated", input the following formula, and choose "Number" as the data type returned from this formula.
Remember to replace it with your column name.
=IF([choice]="Closed",0,IF(OR(ISBLANK([choice]),ISBLANK([Date1])),"",DATEDIF([Date1],TODAY(),"D")))


We look forward to your response. Thanks for your cooperation.
Sincerely,
George | Microsoft Community Moderator