Forum Discussion
parthya_kadam
Aug 07, 2020Copper Contributor
Finding specific cell with respect to column.
Hello. I wanted to find the smallest number in a column and then find the specific cell in the row of that smallest number. I wanted to know the formula using which I can do mentioned above. In phot...
- Aug 07, 2020
=INDEX(AN:AN, MATCH(MIN(AQ:AQ), AQ:AQ, 0))
HansVogelaar
Aug 07, 2020MVP
=INDEX(AN:AN, MATCH(MIN(AQ:AQ), AQ:AQ, 0))
parthya_kadam
Aug 09, 2020Copper Contributor
Thank you so much for your reply it works perfectly well just as I wanted. Thanks again.