try this query, change table1 accordingly
SELECT Table1.ProjectNumber, Table1.Stage, Table1.BudgetRevenue, (select sum([BudgetRevenue]) from table1 T where [ProjectNumber]=table1.[ProjectNumber] And [stage]<=table1.[stage]) AS BudgetRevenueCumulative
FROM Table1;