Need to add 2 amounts in one cell for excel
Closed
bubbles
-
Sep 19, 2010 at 10:33 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Sep 20, 2010 at 09:01 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Sep 20, 2010 at 09:01 AM
Related:
- Need to add 2 amounts in one cell for excel
- Tentacle locker 2 - Download - Adult games
- Five nights in anime 2 - Download - Adult games
- 2007 microsoft office add-in microsoft save as pdf or xps - Download - Other
- Need for speed underground 2 download apk - Download - Racing
- Euro truck simulator 2 download free full version pc - Download - Simulation
2 responses
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Sep 20, 2010 at 06:10 AM
Sep 20, 2010 at 06:10 AM
you cannot have a formula in cell using the same cell which gives an error due to ciruculr reference . what you can do is
in D1 type a formula
=A1+B1-C1
then copy D1. now select C1 . click edit -pastespecial-vlaues -ok
clear D1.
in D1 type a formula
=A1+B1-C1
then copy D1. now select C1 . click edit -pastespecial-vlaues -ok
clear D1.
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Sep 20, 2010 at 09:01 AM
Sep 20, 2010 at 09:01 AM
Try this
=IF(AND(A1="", B1=""),"",IF(A1="",0,IF(ISERROR(FIND(", ",A1,1)),A1,LEFT(A1,FIND(", ",A1,1)-1)+MID(A1,FIND(", ",A1,1)+2,LEN(A1)))) - IF(B1="",0, B1))
It is based on assumption, if A cell has two values (1,000.00, 600.54 ), then the values are separated by a comma and a space (', ')
=IF(AND(A1="", B1=""),"",IF(A1="",0,IF(ISERROR(FIND(", ",A1,1)),A1,LEFT(A1,FIND(", ",A1,1)-1)+MID(A1,FIND(", ",A1,1)+2,LEN(A1)))) - IF(B1="",0, B1))
It is based on assumption, if A cell has two values (1,000.00, 600.54 ), then the values are separated by a comma and a space (', ')