<p><strong>Avec une formule :</strong></p>
<pre><code class="lang-auto">=CONCATENER("préfixe";A1;"suffixe")
</code></pre>
<p>Ou en Excel moderne :</p>
<pre><code class="lang-auto">="préfixe"&A1&"suffixe"
</code></pre>
<p><strong>Avec Rechercher/Remplacer (astuce) :</strong></p>
<ol>
<li>Sélectionnez la colonne</li>
<li>Ctrl+H</li>
<li>Rechercher : <code>*</code> (étoile)</li>
<li>Remplacer par : <code>préfixe&suffixe</code></li>
</ol>
<p><strong>Avec VBA :</strong></p>
<pre data-code-wrap="vba"><code class="lang-vba">For Each cell In Range("A1:A100")
cell.Value = "préfixe" & cell.Value & "suffixe"
Next
</code></pre>