Function to pull a single cell from a column into another cell

L

LukeShep

This is probably just a simple function, but i don't know what it is.
have a column of information that is being pulled from an adjacen
column where only 1 cell will have anything in it but 0. I need to pul
whatever cell in the columns information to a single cell somewher
else. Is there a function for this? thanks in advance new here..

+-------------------------------------------------------------------
+-------------------------------------------------------------------
 
Z

zvkmpw

I
have a column of information that is being pulled from an adjacent
column where only 1 cell will have anything in it but 0. I need to pull
whatever cell in the columns information to a single cell somewhere
else.

Suppose B is the column with only 1 cell will have anything in it but 0.

Suppose A is the column to pull information from.

If the non-zero cell in column B is always a positive number, then try:
=INDEX(A:A,MATCH(MAX(B:B),B:B,0))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top