<p><strong>En VBA :</strong></p>
<pre data-code-wrap="vba"><code class="lang-vba">' Méthode 1 : Cells
Dim valeur As Variant
valeur = Cells(ligne, colonne).Value
' Méthode 2 : Range avec Cells
valeur = Range(Cells(1, 1), Cells(10, 5)).Value
</code></pre>
<p><strong>En formule Excel :</strong></p>
<pre><code class="lang-auto">=INDEX(A:Z;ligne;colonne)
</code></pre>
<p>Ou :</p>
<pre><code class="lang-auto">=INDIRECT(ADRESSE(ligne;colonne))
</code></pre>