jmp Posted August 16, 2019 Posted August 16, 2019 I want to sum 2 or more amount in varieable like $first = 22 $second = 28 $third = 32 I want to sum $first + $second and $second + $third.
mikell Posted August 16, 2019 Posted August 16, 2019 Either there is some crypto-logic I couldn't understand or it is a joke $first = 22 $second = 28 $result = $first + $second Msgbox(0,"", $result)
jmp Posted August 16, 2019 Author Posted August 16, 2019 On 8/16/2019 at 5:22 AM, mikell said: Either there is some crypto-logic I couldn't understand or it is a joke $first = 22 $second = 28 $result = $first + $second Msgbox(0,"", $result) Expand i really don't know it was working, Because i searched on forum and i found topic like this :
FrancescoDiMuro Posted August 16, 2019 Posted August 16, 2019 @jmp You need a For...Next loop, in which sum all the values for each specific column. Click here to see my signature: Reveal hidden contents ALWAYS GOOD TO READ: Forum Rules Forum Etiquette
Xenobiologist Posted August 16, 2019 Posted August 16, 2019 Please show your script, or at least some more detail of what your are dealing with. Do you have variables? Do you want to sum an array or rows and colums in an 2d array? Scripts & functions Organize Includes Let Scite organize the include files Yahtzee The game "Yahtzee" (Kniffel, DiceLion) LoginWrapper Secure scripts by adding a query (authentication) _RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...) Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc. MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times
Malkey Posted August 17, 2019 Posted August 17, 2019 (edited) This example displays the sum of each array's row in an appended last column of a 2D array. #include <array.au3> Local $aArray = [ _ ['Alex', 1, 2, 3], _ ['Bob', 0, "", 9, 5, 12], _ ['Ted', 10, 9, 5, 17] _ ] ; ------ The StringRegExpReplace() function below, removes all plus signs, "+", that are not followed by a digit. --------- Local $s = '(' & StringRegExpReplace(_ArrayToString($aArray, "+", -1, -1, ")&'|'&(", 1), "(\++)(?!\d)", "") & ')' ConsoleWrite($s & " = " & Execute($s) & @CRLF) $s = Execute($s) _ArrayTranspose($aArray) _ArrayAdd($aArray, $s) _ArrayTranspose($aArray) _ArrayDisplay($aArray) Edited August 17, 2019 by Malkey
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