View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Kevin B Kevin B is offline
external usenet poster
 
Posts: 1,316
Default debits and credits in one column

The formula example below assumes debits in A3 and credits in B3

="-"&TEXT(A3,"#.00")&" "&TEXT(B3,"#.00")

If you want a currency format for the values change the "#.00" formatting to
"$#,##0.00" to get punctuated values with 2 decimals

--
Kevin Backmann


"childothe1980s" wrote:

Hello:

I have a financial spreadsheet containing journal entries and, of course,
one column has debits and the other has credits.

The debit column and the credit column have to be in one column and the
credits will need the negative sign placed in front within that same column
to make the number a negative obviously.

What formula can I use to place these two fields like these into one column
with a negative sign in front of the the credits within that one column?

Thanks!

childofthe1980s