Here is an example of my table:
code cd Amount
484 - 4,548
444 + 2,451
426 - 5,487
481 - 145
474 + 1,748
424 - 3,984
i need to add or subtract several of these amounts, if the cd is + then i need to subtract them, if the cd is - then i need to add them. given the string
444 426 474 484 ... it mathmatically comes out to
-2,451 + 5,487 - 1,748 + 4,548... = 5,836
your help is very much appreciated
thank you..
code cd Amount
484 - 4,548
444 + 2,451
426 - 5,487
481 - 145
474 + 1,748
424 - 3,984
i need to add or subtract several of these amounts, if the cd is + then i need to subtract them, if the cd is - then i need to add them. given the string
444 426 474 484 ... it mathmatically comes out to
-2,451 + 5,487 - 1,748 + 4,548... = 5,836
your help is very much appreciated
thank you..