Site icon ExcelNotes

How to Get Group Name for Minimum Value

When working with Excel, especially when you automate a report, you may need to get the group name for the minimum value.

Example: You are working with the survey data with many different communities, and in each community's data, column A is the participants' age groups, and column B is the number of responses in the age group.

Formula: To get the age group that has the least responses

To get the group name for the minimum value, please will need the MIN function, the MATCH function, and the INDEX function.

=INDEX(A2:A6, MATCH(MIN(B2:B6), B2:B6,0))

Exit mobile version