Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by tekvaio

  1. tekvaio

    Removing Decimal

    The Desired result is to have a implied decimal right justified... Must contain the same numbers(no rounding) 1222.33 -> 122233 or 1222.333 -> 1222333 Multiplying by 100 will only be correct for values with a hundreth of a decimal
  2. tekvaio

    Removing Decimal

    And if it does, what else can I do?
  3. tekvaio

    Removing Decimal

    This is what I used: dim sourcetype dim targettype 'Read in the source field sourcetype = Records("[PersonInstruction!Instruction!Amount!AmountValue]Fixed").Fields("Value") targetype = sourcetype * 100 targettype it worked, it did not display any decimal points. Thanks TV
  4. tekvaio

    Removing Decimal

    Decimal I'm in need of a script that will remove the decimal point of a number. For example: 13.22 -->> 1322 or 13.2 -->>13.20 or 13 -->> 1300 I'm unsure on how to do this. Submitted by tekvaio (Programmer) on Jun 6, 2005

Part and Inventory Search

Back
Top