Calculate INDIRECT Cost Rate Excel

“calculate indirect cost rate excel” comes up constantly, so this page leads with the exact answer, and only then explains the detail. Everything works in Excel on Windows and Mac and maps almost one-to-one to Google Sheets. Copy the answer above and get back to work, or read on to turn a one-off fix into something you never have to look up again.

Exact answer

In Excel: use =INDIRECT(ref_text) to turn text into a cell or range reference, for example =INDIRECT("B"&A2) returns the value from the row number stored in A2.

Annotated stepsExcel
1

Build the reference as text, including sheet names and exclamation marks when needed.

2

Wrap sheet names in apostrophes when they may contain spaces.

3

Pass the finished text to INDIRECT.

4

Use normal references or XLOOKUP instead when a non-volatile formula can solve the same problem.

=INDIRECT("A"&ROW())
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

What this does

INDIRECT converts a text string into a live reference. It is useful for dynamic sheet names, selectable ranges and references assembled from cells. The tradeoff is important: INDIRECT is volatile, can slow large workbooks, and does not update references when source ranges are moved the way normal references do. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. Treat “calculate indirect cost rate excel” as a small repeatable workflow rather than a one-off click you hope to remember next time. Use a small test block before the live file, so any surprise in the affected cells shows up while it is still harmless. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. That turns a workflow that saves repeating the same clicks every week into a method you can reuse, explain, and defend when the workbook leaves your screen.

A worked example

A2 contains 10. =INDIRECT("B"&A2) reads B10. If B10 contains 450, the formula returns 450. For a monthly model, =INDIRECT("'"&E1&"'!B5") can pull B5 from the sheet named in E1, such as Jan or Feb. INDIRECT is powerful for dynamic references, but it should be a deliberate choice because it trades flexibility for workbook fragility and recalculation cost. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.

In Google Sheets

If you are in Google Sheets rather than Excel, the good news is that the formula shown here is identical and the workflow barely changes — menus sit across the top instead of in a ribbon, and a few function names differ slightly, but anything you build here moves across with little or no rework. Nothing on this page is behind a login: the tool runs entirely in your browser, the formula is shown in full with one-click copy, and the steps work the same on Windows and Mac. That is the whole promise here — the exact answer, a way to prove it on your own numbers, and just enough context to make it stick. If you take one thing from this page on “calculate indirect cost rate excel”, make it the habit rather than the keystrokes: set the problem up with labelled inputs, reference those cells, and let Excel do the recomputing. Bookmark the page for the syntax, but do the example once in a blank sheet and check it against the tool above — five minutes of hands-on practice fixes the method in memory far better than re-reading, and it surfaces the small snags while they are still harmless. After that the technique is genuinely yours: faster than searching for it again, and reliable enough to drop into work that other people depend on.

Common mistakes

  • Using INDIRECT across many rows and slowing recalculation.
  • Forgetting apostrophes around sheet names with spaces.
  • Expecting references inside INDIRECT to update after rows, columns or sheets are renamed.
  • Using it for simple lookups where INDEX, XLOOKUP or structured references are safer.

Frequently asked questions

What does INDIRECT do?

It turns text such as "A1" or "'Jan'!B5" into an actual reference.

Why is INDIRECT slow?

It is volatile, so it recalculates whenever the workbook recalculates.

Does INDIRECT work with closed workbooks?

In Excel, INDIRECT generally needs the referenced external workbook open.

Other ways people ask this

People reach this page typing “calculate indirect cost rate excel formula”, “how to calculate indirect cost rate percentage excel formula” and “indirect cost rate excel formula”, among other phrasings; whichever wording you used, the fix above is the one you want.

Why do people search for this in so many different ways?

Because the same task has many names. “calculate indirect cost rate excel formula”, “how to calculate indirect cost rate percentage excel formula”, “indirect cost rate excel formula” all point at the one operation explained on this page, which is why they all lead here.