I agree with Teddy that other alternatives should be explored before deciding to store computed fields.
There is always a cost with storing computed fields. Every transaction must fire the trigger and that incurs a small cost. The space required to store the field incurs some cost. There is always the possibility that the trigger may become invalid, be dropped, etc. Then, an uninformed developer, believing that everything is fine, will end up displaying wrong results.
With a view, you pay the cost only when the information is requested. Often, the DBMS can optimize the query so the performance hit is negligible.
Look at the performance with a view. if that is slower but acceptable, use it. Else, use the pre-computed field.
It is not a question of Access or Oracle or SQL Server. It is a question of database design principles.
And we'll thank you, Ach, not to resort to crude personal attacks. Debate the merits of the argument. Explain why you disagree with someone. Don't get personal.
Ravi.