Find and return a specific number
Solved/Closed
JHstuck
-
Jan 27, 2010 at 08:25 AM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Jan 27, 2010 at 08:24 PM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Jan 27, 2010 at 08:24 PM
Related:
- Find and return a specific number
- How to find specific words on a page - Guide
- Zuma return - Download - Puzzle
- Display two columns in data validation list but return only one - Guide
- Thunderbird return receipt - Guide
- If cell contains date then return value ✓ - Excel Forum
1 response
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Jan 27, 2010 at 08:24 PM
Jan 27, 2010 at 08:24 PM
It is not clear what exactly you want at the end
see experimental data A1 to D5
name test1 test2 test3
a 3 3 1
s 2
d 3 1
f 3 2
now in E2 type this formula (or copy paste)
=IF(D2<>0,D2,IF(C2<>0,C2,B2))
copy E2 down
you will get
name test1 test2 test3 result
a 3 3 1 1
s 2 2
d 3 1 1
f 3 2 2
is this what you want?
see experimental data A1 to D5
name test1 test2 test3
a 3 3 1
s 2
d 3 1
f 3 2
now in E2 type this formula (or copy paste)
=IF(D2<>0,D2,IF(C2<>0,C2,B2))
copy E2 down
you will get
name test1 test2 test3 result
a 3 3 1 1
s 2 2
d 3 1 1
f 3 2 2
is this what you want?