Calculate Sales vs Budget in pivot

Maybe this question have been asked in the past but I want to show a Sales Budget, Actual Sales and percentage of the Actual Sales to Budget per each area and each product segment so the image will be like this.
The data is already in the dataset for the Sales Budge and Actual Sales so I need to know how to add the percentage calculation of Sales/Budget into the PIVOT.

image

You can create a calculated field for the percentage and add to the Values field well. Change the Show As to percentage for the new field.

Calculated field:
Sum(Actual_Sales) / Sum(Sales_Budget).