Importing values from excel into VBA -


is possible pull value excel sheet vba, use calculations export calculated value specific cell in excel sheet?

yes possible, here's how (one of many methods) following code assumes running within excel.

this gets value

dim cellcontent string cellcontent = worksheets("asheet").range("a6").value

and sets it

worksheets("asheet").range("a6").value = "foo"

hope helped


Comments

Popular posts from this blog

Java 3D LWJGL collision -

spring - SubProtocolWebSocketHandler - No handlers -

methods - python can't use function in submodule -