ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   New Users to Excel (https://www.excelbanter.com/new-users-excel/)
-   -   sum by coding without 0 (https://www.excelbanter.com/new-users-excel/178403-sum-coding-without-0-a.html)

kaja

sum by coding without 0
 
hi

in the following program if there is no value in the cells a1 and b1
it returns 0

Public Sub Add2Cells()
Range("C1").Value = Range("A1").Value + Range("B1").Value
End Sub
i need only the output if the both the cells have the data will you
can tell me that

Bob Phillips

sum by coding without 0
 
Public Sub Add2Cells()
If Range("A1").Value < "" And .Range("B1").Value < "" Then
Range("C1").Value = Range("A1").Value + Range("B1").Value
End If
End Sub


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"kaja" wrote in message
...
hi

in the following program if there is no value in the cells a1 and b1
it returns 0

Public Sub Add2Cells()
Range("C1").Value = Range("A1").Value + Range("B1").Value
End Sub
i need only the output if the both the cells have the data will you
can tell me that




JMB

sum by coding without 0
 
I think you included an extra period
..Range("B1").Value < ""
probably s/b
Range("B1").Value < ""



"Bob Phillips" wrote:

Public Sub Add2Cells()
If Range("A1").Value < "" And .Range("B1").Value < "" Then
Range("C1").Value = Range("A1").Value + Range("B1").Value
End If
End Sub


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"kaja" wrote in message
...
hi

in the following program if there is no value in the cells a1 and b1
it returns 0

Public Sub Add2Cells()
Range("C1").Value = Range("A1").Value + Range("B1").Value
End Sub
i need only the output if the both the cells have the data will you
can tell me that






All times are GMT +1. The time now is 09:14 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com