Changing the Indian Currency to USD Currency

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mahesh123
    New Member
    • Oct 2007
    • 64

    Changing the Indian Currency to USD Currency

    Hi Folks,

    I am information regarding the Changing the Indian Currency to USD Currency. How can we change the Indian Currency to USD Currency. For example if the Indian Currency is 100 rs then the USD Currency is the 2.43 dollors.

    Like that we have to convert the Indian currency to USD Currency.

    Advance Thanks for Suggestions

    Mahesh
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    that is so simple , you just need to feed the conversion rate . rest is simple division / multiplication.

    Comment

    • QVeen72
      Recognized Expert Top Contributor
      • Oct 2006
      • 1445

      #3
      Hi,

      Create a Function and Pass the Indian Currency and return the US Currency ..
      some thing like this :

      [code=vb]
      Public Function MyUSD(ByVal MyINR As Currency) As Currency
      MyUSD = MyINR / 41.152
      'Change the Conversion rate/ Spot rate accordingly..
      End Function
      [/code]

      Regards
      Veena

      Comment

      Working...