Excel VBA: Retrieve the value of a cell.

Solved
la pioche -  
mikebzh Posted messages 135 Status Member -
Hello,
I just want to know how to retrieve the value of a cell
To get the address:
Cell.address
The row:
Row.row
The value: (the word contained in the cell in Excel)
?Configuration: Windows XP
Firefox 3.0.6

3 answers

  1. lermite222 Posted messages 9042 Status Contributor 1 199
     
    Hello,
    One way to do it...
    Result = Cells(Row,Column).Value

    another way
    Result = Range("A1").value

    See you later
    Experience teaches more surely than advice. (André Gide)
    If you bump into a pot and it sounds hollow, it doesn't necessarily mean the pot is empty. ;-)(Confucius)
    31