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
Post a Comment