osx - adding and subtracting cells in excel -


say have 7 groups of columns of 2 columns , each group of column represent 1 day " monday tuesdays ect... & in 1 group of columns there's either "win" or "lost" want add columns win add , lost subtract automatically. have set can 1 "win" or 1 "lost" in each group of 2 columns. exp: {a(win) b(lost)} {c(win) d(lost)}

so want if "a" win , " c" win , "f" lost , "h" lost , "i" win ect... come total

exp: a[1234] +c[1234] - f[1234] -h[1234] = [total]

i want lose shown in negative ...

how can make whole column show has negative value everytime enter number : -1234 if enter 1234 in "lose" column

if want sum number of wins , loses can use countif on ranges care about, e.g.

=countif(b4:b13,"win") -countif(b4:b13,"loss") 

you'll need change b4:b13 ranges match wherever tracking wins/loses , change "win" , "loss" strings match whatever indicates whether given day win or loss. if want apply different scoring wins vs. losses multiply countif statements scoring values.


Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -