excel - External Address that isn't fixed -


i have 2 workbooks wb1 , wb2 worksheets ws1 , ws2 respectively. want this:

ws1.range("a1").formula = "=100*" & ws2.range("a2").address(external:=true) ws1.range("a1:a10").filldown 

now unfortunately ws1.range("a1") ends being =100*ws2!$a$1 means filldown command doesn't work a1 fixed.

how link otherworkbook's cell address without having fixed?

instead of address(external:=true), use address(rowabsolute:=false, columnabsolute:=false, external:=true)

that suppress $s


Comments

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -