VBA to Applescript

O

Obi_Wan

Version: 2008

Hello,
I 've found and edited a VBA for my work. but now i cant use it with our MacBook Pro. it has Office 2008 for Mac and it says " Office for Mac does not support VBA script ".

Anyone can help me to convert this script to Applescript?!

Thanks for any help!..

'****************
' Main Function *
'****************
Function Cevir(ByVal MyNumber)

Dim Riyals, Baisa, Temp
Dim DecimalPlace, Count

ReDim Place(9) As String
Place(2) = " Thousand "
Place(3) = " Million "
Place(4) = " Billion "
Place(5) = " Trillion "

' String representation of amount
MyNumber = Trim(Str(MyNumber))

' Position of decimal place 0 if none
DecimalPlace = InStr(MyNumber, ".")
'Convert cents and set MyNumber to dollar amount
If DecimalPlace > 0 Then
'Baisa = GetTens(Left(Mid(MyNumber, DecimalPlace + 1) & "00", 2))
Baisa = GetHundreds(Left(Mid(MyNumber, DecimalPlace + 1) & "000", 3))
MyNumber = Trim(Left(MyNumber, DecimalPlace - 1))
End If

Count = 1
Do While MyNumber <> ""
Temp = GetHundreds(Right(MyNumber, 3))
If Temp <> "" Then Riyals = Temp & Place(Count) & Riyals
If Len(MyNumber) > 3 Then
MyNumber = Left(MyNumber, Len(MyNumber) - 3)
Else
MyNumber = ""
End If
Count = Count + 1
Loop

Select Case Riyals
Case ""
Riyals = ""
Case "One"
Riyals = "One Riyal"
Case Else
Riyals = Riyals & " Riyals"
End Select

If Riyals = "" Then
Select Case Baisa
Case ""
'Baisa = " and No Baisa"
Baisa = ""
Case "One"
Baisa = "One Baisa"
Case Else
Baisa = Baisa & " Baisa"
End Select
Else
Select Case Baisa
Case ""
'Baisa = " and No Baisa"
Baisa = ""
Case "One"
Baisa = " and One Baisa"
Case Else
Baisa = " and " & Baisa & " Baisa"
End Select
End If

Cevir = Riyals & Baisa
End Function

'*******************************************
' Converts a number from 100-999 into text *
'*******************************************
Private Function GetHundreds(ByVal MyNumber)
Dim Result As String

If Val(MyNumber) = 0 Then Exit Function
MyNumber = Right("000" & MyNumber, 3)

'Convert the hundreds place
If Mid(MyNumber, 1, 1) <> "0" Then
Result = GetDigit(Mid(MyNumber, 1, 1)) & " Hundred "
End If

'Convert the tens and ones place
If Mid(MyNumber, 2, 1) <> "0" Then
Result = Result & GetTens(Mid(MyNumber, 2))
Else
Result = Result & GetDigit(Mid(MyNumber, 3))
End If

GetHundreds = Result
End Function

'*********************************************
' Converts a number from 10 to 99 into text. *
'*********************************************
Private Function GetTens(TensText)
Dim Result As String

Result = "" 'null out the temporary function value
If Val(Left(TensText, 1)) = 1 Then ' If value between 10-19
Select Case Val(TensText)
Case 10: Result = "Ten"
Case 11: Result = "Eleven"
Case 12: Result = "Twelve"
Case 13: Result = "Thirteen"
Case 14: Result = "Fourteen"
Case 15: Result = "Fifteen"
Case 16: Result = "Sixteen"
Case 17: Result = "Seventeen"
Case 18: Result = "Eighteen"
Case 19: Result = "Nineteen"
Case Else
End Select
Else ' If value between 20-99
Select Case Val(Left(TensText, 1))
Case 2: Result = "Twenty "
Case 3: Result = "Thirty "
Cas
 
O

Obi_Wan

This Script convert Qatar Currency rate to words. for example, if i write 123,456 it says One Hundred Twenty Three Riyals and Four Hundred Fifty Six Baisas.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top