Excel weekly fortnightly monthly budget if statement -
my spread sheet has columns expenses weekly, fortnightly , month. assist myself trying simplify weekly amount using if statement. example weekly (a1), fortnightly (b1), monthly (c1). d1 needs end weekly amount overall. a1 $10 if has value show value otherwise leave blank because either b1 or c1 have value. b1 $30 if has value divide 2 , show otherwise leave blank because a1 or c1 has value. c1 $85 if has value multiply 12 , divide 52 , show otherwise leave blank because a1 or b1 has value. in advance
this compound if should need (parens emphasize calculation , not necessary):
=if(b2>0,(b2),if(c2>0,(c2/2),if(d2>0,(d2*12/52),"no values")))
propagate down through column want normalized weekly expense , should result in this:
weekly fortnightly monthly normalized item 10.00 10.00 item b 30.00 15.00 item c 85.00 19.62 item d no values
Comments
Post a Comment