Forum Discussion
Yok33
Jun 01, 2022Copper Contributor
Microsoft Office Excel formula
See attached image. - Looking for formula that will look at column A and determine whether is is "E-Check" or just "Check". - Then depending on what it finds, it will place the value from column B ...
- Jun 01, 2022Two ways to do it.
If you have SPILL capability:
=IF(A2:A8="E-Check",B2:B8,"")
Legacy Excel:
=IF(A2="E-Check",B2,"")
Patrick2788
Jun 01, 2022Silver Contributor
Two ways to do it.
If you have SPILL capability:
=IF(A2:A8="E-Check",B2:B8,"")
Legacy Excel:
=IF(A2="E-Check",B2,"")
If you have SPILL capability:
=IF(A2:A8="E-Check",B2:B8,"")
Legacy Excel:
=IF(A2="E-Check",B2,"")
- Yok33Jun 01, 2022Copper ContributorExcellent. Thank you and it does work.
Yok33