EXCEL: Need cross dependence on cells to work a simple formula -
essentially need type number cell a1 , have reflect cell b , c. type b , have reflect , c. , type c , have reflect , b.
(obviously can't depend on each other automatically, have send info other 2 cells after completing manual entry of value in either of 3 cells.)
case:
a1=1 , b2=60 , c1=3600
respectively - hours, minutes, seconds.
what need type 5400 c1 , end 90 in b1, , 1.5 in a1. after if type 2 in a1, end 120 in b1 , 7200 in c1. etc.
thx in advance. (don't know if need vba)
btw know of spreadsheet web service doesn't have downloads, annoying registrations etc. have been alot faster if linked here, people don't need login , register see example...
here's solution future reference. kudos ragulduy it.
private sub worksheet_change(byval target range) if not intersect(target, range("a1:c1")) nothing application.enableevents = false if target.address = "$a$1" range("b1") = range("a1") * 60 range("c1") = range("a1") * 3600 elseif target.address = "$b$1" range("a1") = range("b1") / 60 range("c1") = range("b1") * 60 elseif target.address = "$c$1" range("a1") = range("c1") / 3600 range("b1") = range("c1") / 60 end if application.enableevents = true end if end sub
tags: co-dependent cells, co dependent cells, cell cross reference, cross-reference cell, multi dependent cell
Comments
Post a Comment