Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I've been trying to figure out how i can identify the first non blank cell in
a series and show me which column that cell is in. e.g. Col1 Col2 Col3 Col4 Col5 Row1 34.2 3.45 45.1 432.1 Row2 43.1 541 Row3 34.1 51.12 What formula can i key in Col6, that shows me the for row2,that col2 is the first non blank number, and for row 3, col3 is the first non blank number and similarly for Row1, col1 is the first non blank number. Thanks |
#2
![]() |
|||
|
|||
![]()
In F2
=MIN(IF(A2:E2<"",COLUMN(A2:E2))) which is an array formula, so commit with Ctrl-Shift-Enter -- HTH RP (remove nothere from the email address if mailing direct) "Rajiv@Ivey" wrote in message ... I've been trying to figure out how i can identify the first non blank cell in a series and show me which column that cell is in. e.g. Col1 Col2 Col3 Col4 Col5 Row1 34.2 3.45 45.1 432.1 Row2 43.1 541 Row3 34.1 51.12 What formula can i key in Col6, that shows me the for row2,that col2 is the first non blank number, and for row 3, col3 is the first non blank number and similarly for Row1, col1 is the first non blank number. Thanks |
#3
![]() |
|||
|
|||
![]()
You did mention that the result should be in colmn 6.
As long as you do not need to add more columns a nested if formula will do it. =IF(A10,1,IF(B10,2,IF(C10,3,IF(D10,4,IF(E10,5 ,"none"))))) -- Greetings from New Zealand Bill K "Rajiv@Ivey" wrote in message ... I've been trying to figure out how i can identify the first non blank cell in a series and show me which column that cell is in. e.g. Col1 Col2 Col3 Col4 Col5 Row1 34.2 3.45 45.1 432.1 Row2 43.1 541 Row3 34.1 51.12 What formula can i key in Col6, that shows me the for row2,that col2 is the first non blank number, and for row 3, col3 is the first non blank number and similarly for Row1, col1 is the first non blank number. Thanks |
#4
![]() |
|||
|
|||
![]()
Another way
=MATCH(TRUE,A2:D2<"",0) entered with ctrl + shift & enter regards, Peo Sjoblom "Rajiv@Ivey" wrote: I've been trying to figure out how i can identify the first non blank cell in a series and show me which column that cell is in. e.g. Col1 Col2 Col3 Col4 Col5 Row1 34.2 3.45 45.1 432.1 Row2 43.1 541 Row3 34.1 51.12 What formula can i key in Col6, that shows me the for row2,that col2 is the first non blank number, and for row 3, col3 is the first non blank number and similarly for Row1, col1 is the first non blank number. Thanks |
#5
![]() |
|||
|
|||
![]()
excellent options
Thanks Bob and Peo Bill K "Peo Sjoblom" wrote in message ... Another way =MATCH(TRUE,A2:D2<"",0) entered with ctrl + shift & enter regards, Peo Sjoblom "Rajiv@Ivey" wrote: I've been trying to figure out how i can identify the first non blank cell in a series and show me which column that cell is in. e.g. Col1 Col2 Col3 Col4 Col5 Row1 34.2 3.45 45.1 432.1 Row2 43.1 541 Row3 34.1 51.12 What formula can i key in Col6, that shows me the for row2,that col2 is the first non blank number, and for row 3, col3 is the first non blank number and similarly for Row1, col1 is the first non blank number. Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
blank cells | Excel Discussion (Misc queries) | |||
Not plotting blank cells with formulas until number appears | Charts and Charting in Excel | |||
VLOOKUP, OFFSET, MATCH PROBLEM, HELP? | Excel Worksheet Functions | |||
How to format a number in Indian style in Excel? | Excel Discussion (Misc queries) | |||
GET.CELL | Excel Worksheet Functions |