Jat421 Posted August 28, 2012 Share Posted August 28, 2012 Hi, I have a script that will output a number called $sum between 1 and 100 and then I need to divide that number by 10. All is working fine but when a number is (10,20,30,40..) it will give me only the first digit of the remainder. Any way for it to show 7.0 when 70 divided by 10? Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted August 28, 2012 Moderators Share Posted August 28, 2012 (edited) Jat421,Take a look at Round in the Help file. M23Edit: In fact do not because it does not do what I thought it did with trailing zeroes! New edit: You need StringFormat:$nNumber = 70 / 10 ConsoleWrite(StringFormat("%.1f", $nNumber) & @CRLF) $nNumber = 74 / 10 ConsoleWrite(StringFormat("%.1f", $nNumber) & @CRLF) Edited August 28, 2012 by Melba23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
dany Posted August 28, 2012 Share Posted August 28, 2012 (edited) By appending it. 7.0 = 7 to AutoIt so you'll have to check for rounded numbers using Round (If $sum = Round($sum)) and then prepend '.0' yourself. [edit] typo [/edit] Edited August 28, 2012 by dany [center]Spiderskank Spiderskank[/center]GetOpt Parse command line options UDF | AU3Text Program internationalization UDF | Identicon visual hash UDF Link to comment Share on other sites More sharing options...
BrewManNH Posted August 28, 2012 Share Posted August 28, 2012 Use StringFormat to make sure it has as many characters after the decimal point as you want it to, with zeros if needed. ConsoleWrite(StringFormat("%.2f", "7") & @lf) ; this format string will give you 2 characters after the decimal point, zeros added. change it to 1f if you only want/need 1 character after the decimal If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
dany Posted August 28, 2012 Share Posted August 28, 2012 @BrewManNH: Even better. [center]Spiderskank Spiderskank[/center]GetOpt Parse command line options UDF | AU3Text Program internationalization UDF | Identicon visual hash UDF Link to comment Share on other sites More sharing options...
Jat421 Posted August 28, 2012 Author Share Posted August 28, 2012 Doesn't seem to be work for me. What am I doing wrong $sum = 70 MsgBox(0,"test", $sum) $sum = $sum/10 StringFormat("%.2f", $sum) MsgBox(0,"test", $sum) Link to comment Share on other sites More sharing options...
BrewManNH Posted August 28, 2012 Share Posted August 28, 2012 $sum = StringFormat("%.2f", $sum) You weren't formatting the string $sum, you were just creating a string with the contents of $sum and then not assigning the new string to anything. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
Bowmore Posted August 28, 2012 Share Posted August 28, 2012 $sum = 70 MsgBox(0,"test", $sum) $sum = $sum/10 $sum = StringFormat("%.2f", $sum) MsgBox(0,"test", $sum) "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to build bigger and better idiots. So far, the universe is winning."- Rick Cook Link to comment Share on other sites More sharing options...
Jat421 Posted August 28, 2012 Author Share Posted August 28, 2012 lol, yes you are right. sorry about that. Thanks for your help!!!. It works perfect now! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now