Forum Discussion
rack38
Jan 23, 2019Copper Contributor
Help with formula in Excel
I am trying to separate some cells from a bank exported file in excel and need some help from someone much smarter than I am. This is what I have: All the numbers in column C are together as cred...
Rich99
Jan 24, 2019Iron Contributor
Hi
I would create a new column for the deposit and use this formula =IF(LEFT(B3,4)="Depo",C3,"")
for the withdrawal use this one =IF(LEFT(B3,4)="With",C3,""). If you want to delete your original column of values remember to highlight the columns with the formulas and copy special, Values then paste the values back into the cells, otherwise hide the original column.
Rich
I would create a new column for the deposit and use this formula =IF(LEFT(B3,4)="Depo",C3,"")
for the withdrawal use this one =IF(LEFT(B3,4)="With",C3,""). If you want to delete your original column of values remember to highlight the columns with the formulas and copy special, Values then paste the values back into the cells, otherwise hide the original column.
Rich
- rack38Jan 24, 2019Copper Contributor
Rich,
Thank you so much, that worked like a charm.