( answ | 2012. 02. 17., p – 15:21 )

Ez nem olyan egyszerű, hogy "csak gombokat kell nyomogatni". Tudni kell Visual Basic nyelven programozni.

Ezt berakod egy modulba:
Public Function md5(rng As Range) As String
Dim cll As Range, str As String
For Each cll In rng
str = str & cll.value
Next cll
md5 = DigestStrToHexStr(str)
End Function

Ennek a tartalmát is berakod egy modulba:
http://bytes.com/attachments/attachment/2477d1259713872/clsmd5.txt
(Forrás: http://bytes.com/topic/access/insights/877896-generate-secure-user-pass…)

Aztán Excel táblában =md5(A1:D1) vagy amilyen ranget akarsz..