View Single Post
 
Old 07-14-2021, 07:07 AM
yacov yacov is offline Windows 10 Office 2016
Competent Performer
 
Join Date: Oct 2019
Posts: 146
yacov is on a distinguished road
Default

toolscalculator can be starting point,

Sub wcal()
If Selection.Name = "א" Then _
Selection.Name = "1"
If Selection.Name = "ב" Then _
Selection.Name = "2"
MsgBox "And the answer is... " & Selection.Calculate
End Sub
Reply With Quote