How to report missing branch coverage

Finding missing branch coverage seems confusing in Questa Sim gui RTL file

When I look at the RTL file, all lines marked in green color “Tick mark” , few lines marked “E”(exlcuded lines as expected).
statement coverage is reported 100% - that’s good
Branch coverage is 98.8% – couldn’t understand which branches are missed.

Someone help, whether am I missing something here
or
how can see missing branch coverage lines of RTL code

In reply to kvenkatv:

You can have 100% code coverage and less than 100% branch coverage if you have if statements without an else clause, or case statements without a default clause, and never branch over the true or existing case items.

The should be a column in your coverage report that shows where the skipped brnach was never taken. You will need top consult your user manual or contact your vendor for assistance as this forum is not for tool specific support.