Tag: 手机

VBA Excel:在手机号码左边显示零

我正在使用VBA Excel进行项目工作,而且手机号码有问题。 当我插入手机号码时,例如:0762 …….在excel上,我们只能看到762 ……在左边没有零。 我怎样才能做到这一点 ? 这是我的脚本的一部分: If MsgBox("Confirmez-vous l'insertion de ce nouveau contact ?", vbYesNo, "Demande de confirmation d'ajout") = vbYes Then i = WorksheetFunction.CountA(Range("A:A")) + 1 'Pour placer le nouvel enregistrement à la première ligne de tableau non vide MsgBox i Sheets("Reservations").Range("A" & i).Value = UserForm1.TextBox1.Value Sheets("Reservations").Range("B" & i).Value = UserForm1.TextBox2.Value Sheets("Reservations").Range("C" […]