Mastering the launch market economics using advanced spreadsheets.
You have just started as a Junior Analyst at Nova Capital. The firm is currently evaluating a massive investment in a satellite constellation startup called OrbitWeb.
OrbitWeb claims they can achieve profitability by launching 1,200 satellites at a "bulk rate" of $1,500/kg. Your Managing Director, Sara, is skeptical. She hands you a raw CSV of historical launch data and says:
"I need to know the ground truth. OrbitWeb's projections depend on market rates that haven't been seen yet. Pull the historical data, build a comparison model, and tell me: Is their $1,500/kg target realistic based on current market trends?"
Launch costs aren't just about fuel; they are about geography. Rockets launching from the Equator (like Kourou, FR) gain a "slingshot" effect from Earth's rotation, reducing $/kg. Rockets launching from higher latitudes (like Vostochny, RU) require more energy to reach LEO.
Ctrl + T. This converts the raw data into a structured Table Object.
LaunchMarket.
Data tab and click Filter (or click the arrows on the table headers). Use the dropdown menu to uncheck rows with 0 or missing values. In the space industry, a "0" usually means a flight hasn't happened yet (e.g., Starship v3).
To calculate efficiency for beginners: In Excel, every formula begins with an equals sign (=). Instead of typing numbers, we click the cells to create dynamic "links". Because we are using Tables, Excel uses readable names like [@ColumnName].
Cost_Per_KG.==[@CostPerLaunch_USD] appear./ (which means divide in Excel).Enter key. Because it is a Table, Excel will automatically copy the formula down to every single row!=[@CostPerLaunch_USD] / [@PayloadToLEO_kg]
File > Import > Upload to upload your Launch_Costs.csv file.Data > Named Ranges in the top menu. A sidebar will open; name this range LaunchCosts. This makes your formulas much more readable than B2:B50.Data > Data Cleanup > Remove Duplicates. Space data often has repeats from different reporting agencies.Format > Conditional Formatting. Set the rule to "Less than" and value to "2000", then change the fill color to a bright green. These highlighted rows are your "Disruptors."Sarah needs to compare any rocket to another side-by-side without digging through 100 rows of data. We will build a dynamic "VS" tool using Excel's most powerful lookup function.
XLOOKUP is built like a search engine. You give it what you want to find, where to look, and what answer to bring back.
"Falcon 9").LaunchMarket[LaunchVehicle]).LaunchMarket[Cost_Per_KG]).=XLOOKUP(Target_Rocket, LaunchMarket[LaunchVehicle], LaunchMarket[Cost_Per_KG])
Based on your analysis, you must present a recommendation. Is OrbitWeb's $1,500/kg target achievable?
How to build the Executive Dashboard:
B2 on your Dashboard. Go to the Data tab in the ribbon and click Data Validation. Under 'Allow', select List. Click inside the 'Source' box, go to your LaunchMarket data tab, and highlight all the Launch Vehicle names. Click OK. Now cell B2 has a clickable dropdown!C2 next to your dropdown, type your XLOOKUP formula to pull the specific Cost/kg based on whatever rocket is selected in B2.Ctrl key, and highlight the "Cost_Per_KG" column. Go to Insert > Scatter > Scatter with Smooth Lines. Cut and paste this chart onto your Dashboard tab!