?Countifs?

If I have a Data Grid (called: Jan ) that has 3 columns ( $, #, %), and 2 Rows (Account #, Sales Rep,) what formula would I use in a separate Data Grid (called: Data) to pull specific columns.
Example: I want to populate the "$" value listed in "Jan" if the Row is "Account #1"
Hoping there is a formula where I can basically ask: "return the $ value from Jan if Account # is equal to 1"
Answers
-
Hi @Drew Cooper
"return the $ value from Jan if Account # is equal to 1" translated into a formula looks like this:
=INDEX({Jan Range $}, MATCH([Account 1]@row, {Jan Range Account #}, 0))
INDEX(range, row_index) returns a range {Jan Range $} of the row specified by row_index.
MATCH(Β search_value,Β range,Β [Β search_typeΒ ]) returns the row_index of the range ( {Jan Range Account #}) that is equal to the search_value (Account #: 1).
https://help.smartsheet.com/function/match
To show if there is no match, use a formula like this:
=IFERROR(INDEX({Jan Range $}, MATCH([Account 1]@row, {Jan Range Account #}, 0)), "Not Registered")
For details, check the published demo sheet at the bottom.
Help Article Resources
Categories
Check out the Formula Handbook template!