values of an interval of cells HELP ME

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hello,
in the first line of the code of under I have the necessity to take me the values of an interval of cells that goes from the A13 cell to the G14 cell!!! I have written pippo.Range("A13:G14").value but it is wrong!!!
one solution

THANKS A LO

If pippo.Range("A21").Value = ActiveWorkbook.Path And pippo.Range("A13:G14").Value >= "0" Then
MsgBox ("file valido")
Else
MsgBox ("file non valido"
 
fernando

Perhaps

If pippo.Range("A21").Value = ActiveWorkbook.Path And _
Application.Sum(pippo.Range("A13:G14")) >= 0 Then

--
Dick Kusleika
MVP - Excel
www.dicks-clicks.com
Post all replies to the newsgroup.

fernando said:
hello,
in the first line of the code of under I have the necessity to take me the
values of an interval of cells that goes from the A13 cell to the G14
cell!!! I have written pippo.Range("A13:G14").value but it is
wrong!!!
one solution?

THANKS A LOT

If pippo.Range("A21").Value = ActiveWorkbook.Path And
pippo.Range("A13:G14").Value >= "0" Then
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top