I have added a new culumn to QuoteProduct entity as 'Price Inc GST'.
Then I need to create a Workflow to calculate tax value and assign update tax feild with calculated tax.
Formula is like this
Tax = (Price Inc GST - Price Per Unit) * Quantity
This is the way I tried.

I tried this expression to update a row and assign the calculated value to the Tax Feild. But gives a error
coalesce(triggerBody()?['quantity'], 0) * (coalesce(triggerBody()?['e360_priceincgst'], 0) - coalesce(triggerBody()?['priceperunit'], 0))

I'm new to Power Automate and hit a wall